Fixed: Incorrect log level used #4168

This commit is contained in:
Nick Bolton 2015-02-26 16:44:10 +00:00
parent 6971f4551d
commit 6e7b9491d4
2 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ ArchPluginUnix::load()
String filename = synergy::string::removeFileExt(*it);
m_pluginTable.insert(std::make_pair(filename, library));
LOG((CLOG_ERR "loaded plugin: %s", (*it).c_str()));
LOG((CLOG_DEBUG "loaded plugin: %s", (*it).c_str()));
}
}

View File

@ -68,7 +68,7 @@ ArchPluginWindows::load()
String filename = synergy::string::removeFileExt(*it);
m_pluginTable.insert(std::make_pair(filename, lib));
LOG((CLOG_ERR "loaded plugin: %s", (*it).c_str()));
LOG((CLOG_DEBUG "loaded plugin: %s", (*it).c_str()));
}
}