Browse Source

Tweak plugin load info log text.

tags/v2.5.0
Andrew Belt 1 year ago
parent
commit
8bbe28822c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/plugin.cpp

+ 1
- 1
src/plugin.cpp View File

@@ -198,7 +198,7 @@ static Plugin* loadPlugin(std::string path) {
return NULL;
}

INFO("Loaded %s %s", plugin->slug.c_str(), plugin->version.c_str());
INFO("Loaded plugin %s %s", plugin->slug.c_str(), plugin->version.c_str());
plugins.push_back(plugin);
return plugin;
}


Loading…
Cancel
Save