Browse Source

Log app variant name.

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
a6edf06a14
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      adapters/standalone.cpp

+ 1
- 1
adapters/standalone.cpp View File

@@ -126,7 +126,7 @@ int main(int argc, char* argv[]) {
} }


// Log environment // Log environment
INFO("%s v%s", APP_NAME.c_str(), APP_VERSION.c_str());
INFO("%s %s v%s", APP_NAME.c_str(), APP_VARIANT.c_str(), APP_VERSION.c_str());
INFO("%s", system::getOperatingSystemInfo().c_str()); INFO("%s", system::getOperatingSystemInfo().c_str());
std::string argsList; std::string argsList;
for (int i = 0; i < argc; i++) { for (int i = 0; i < argc; i++) {


Loading…
Cancel
Save