diff --git a/adapters/standalone.cpp b/adapters/standalone.cpp index cfbcfb47..596bd0c5 100644 --- a/adapters/standalone.cpp +++ b/adapters/standalone.cpp @@ -127,7 +127,7 @@ int main(int argc, char* argv[]) { } // Log environment - INFO("%s %s v%s", APP_NAME.c_str(), APP_EDITION_NAME.c_str(), APP_VERSION.c_str()); + INFO("%s %s %s", APP_NAME.c_str(), APP_EDITION_NAME.c_str(), APP_VERSION.c_str()); INFO("%s", system::getOperatingSystemInfo().c_str()); std::string argsList; for (int i = 0; i < argc; i++) { diff --git a/src/engine/Module.cpp b/src/engine/Module.cpp index 1014c225..d944cdd7 100644 --- a/src/engine/Module.cpp +++ b/src/engine/Module.cpp @@ -164,7 +164,7 @@ void Module::fromJson(json_t* rootJ) { if (versionJ) { std::string version = json_string_value(versionJ); if (version != this->model->plugin->version) { - INFO("Patch created with %s v%s, currently using v%s.", this->model->plugin->slug.c_str(), version.c_str(), this->model->plugin->version.c_str()); + INFO("Patch created with %s %s, currently using version %s.", this->model->plugin->slug.c_str(), version.c_str(), this->model->plugin->version.c_str()); } } diff --git a/src/patch.cpp b/src/patch.cpp index 050ebed6..ac1c08d1 100644 --- a/src/patch.cpp +++ b/src/patch.cpp @@ -483,7 +483,7 @@ void Manager::fromJson(json_t* rootJ) { if (versionJ) version = json_string_value(versionJ); if (version != APP_VERSION) { - INFO("Patch was made with Rack v%s, current Rack version is v%s", version.c_str(), APP_VERSION.c_str()); + INFO("Patch was made with Rack %s, current Rack version is %s", version.c_str(), APP_VERSION.c_str()); } // path diff --git a/src/plugin.cpp b/src/plugin.cpp index 7f9dd830..52df4b69 100644 --- a/src/plugin.cpp +++ b/src/plugin.cpp @@ -196,7 +196,7 @@ static Plugin* loadPlugin(std::string path) { return NULL; } - INFO("Loaded %s v%s", plugin->slug.c_str(), plugin->version.c_str()); + INFO("Loaded %s %s", plugin->slug.c_str(), plugin->version.c_str()); plugins.push_back(plugin); return plugin; }