Fixed am49892 - Plugin load fails going to error logs instead of normal logs

This commit is contained in:
Steve Dudenhoeffer 2007-02-19 08:46:43 +00:00
parent ade56b62e9
commit 615e097c68

View File

@ -90,7 +90,7 @@ int CPluginMngr::loadPluginsFromFile(const char* filename, bool warn)
{ {
if (warn) if (warn)
{ {
AMXXLOG_Log("[AMXX] Plugins list not found (file \"%s\")", filename); AMXXLOG_Error("[AMXX] Plugins list not found (file \"%s\")", filename);
} }
return 1; return 1;
} }
@ -160,7 +160,7 @@ int CPluginMngr::loadPluginsFromFile(const char* filename, bool warn)
char errorMsg[255]; char errorMsg[255];
sprintf(errorMsg, "%s (plugin \"%s\")", error, pluginName); sprintf(errorMsg, "%s (plugin \"%s\")", error, pluginName);
plugin->setError(errorMsg); plugin->setError(errorMsg);
AMXXLOG_Log("[AMXX] %s", plugin->getError()); AMXXLOG_Error("[AMXX] %s", plugin->getError());
} }
} }