summaryrefslogtreecommitdiff
path: root/src/commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands.cpp')
-rw-r--r--src/commands.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands.cpp b/src/commands.cpp
index e74d82010..6bb169f0a 100644
--- a/src/commands.cpp
+++ b/src/commands.cpp
@@ -72,12 +72,12 @@ int operstrcmp(const char* data,const char* input)
{
int MOD_RESULT = 0;
FOREACH_RESULT(I_OnOperCompare,OnOperCompare(data,input))
- log(DEBUG,"operstrcmp: %d",MOD_RESULT);
+ ServerInstance->Log(DEBUG,"operstrcmp: %d",MOD_RESULT);
if (MOD_RESULT == 1)
return 0;
if (MOD_RESULT == -1)
return 1;
- log(DEBUG,"strcmp fallback: '%s' '%s' %d",data,input,strcmp(data,input));
+ ServerInstance->Log(DEBUG,"strcmp fallback: '%s' '%s' %d",data,input,strcmp(data,input));
return strcmp(data,input);
}