Skip to content

Commit

Permalink
BETA version indication
Browse files Browse the repository at this point in the history
  • Loading branch information
halfgaar committed Aug 28, 2023
1 parent 2d9ff7b commit 968b8d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ int main(int argc, char *argv[])
sse = "with SSE4.2 support";
#endif
#ifdef NDEBUG
logger->logf(LOG_NOTICE, "Starting FlashMQ version %s, release build %s.", FLASHMQ_VERSION, sse.c_str());
logger->logf(LOG_NOTICE, "Starting FlashMQ version %s (with bridge beta), release build %s.", FLASHMQ_VERSION, sse.c_str());
#else
logger->logf(LOG_NOTICE, "Starting FlashMQ version %s, debug build %s.", FLASHMQ_VERSION, sse.c_str());
logger->logf(LOG_NOTICE, "Starting FlashMQ version %s (with bridge beta), debug build %s.", FLASHMQ_VERSION, sse.c_str());
#endif
mainApp->start();
logger->quit();
Expand Down
2 changes: 1 addition & 1 deletion mainapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ void MainApp::showLicense()
sse = "with SSE4.2 support";
#endif

printf("FlashMQ Version %s %s\n", FLASHMQ_VERSION, sse.c_str());
printf("FlashMQ Version %s (with bridge beta) %s\n", FLASHMQ_VERSION, sse.c_str());
puts("Copyright (C) 2021-2023 Wiebe Cazemier.");
puts("License OSL3: Open Software License 3.0 <https://opensource.org/license/osl-3-0-php/>.");
puts("");
Expand Down

0 comments on commit 968b8d3

Please sign in to comment.