aboutsummaryrefslogtreecommitdiff
path: root/src/server/authserver/Main.cpp
diff options
context:
space:
mode:
authorsilinoron <none@none>2010-12-27 09:27:43 -0800
committersilinoron <none@none>2010-12-27 09:27:43 -0800
commitda8d794f4bd6765c45847d93626057e272f7358e (patch)
treeedaa6af40ea9d74dbc5f2d05e0c8b32fc58c19d1 /src/server/authserver/Main.cpp
parent8865d367c6bec30fc43211821dea5ebfe72e1017 (diff)
Core/Authserver: Put code in line with recent singleton changes.
--HG-- branch : trunk
Diffstat (limited to 'src/server/authserver/Main.cpp')
-rwxr-xr-xsrc/server/authserver/Main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/authserver/Main.cpp b/src/server/authserver/Main.cpp
index be05e6c8489..5d6e8482e1b 100755
--- a/src/server/authserver/Main.cpp
+++ b/src/server/authserver/Main.cpp
@@ -181,11 +181,11 @@ extern int main(int argc, char **argv)
ULONG_PTR curAff = Aff & appAff; // remove non accessible processors
if (!curAff)
- sLog.outError("Processors marked in UseProcessors bitmask (hex) %x not accessible for realmd. Accessible processors bitmask (hex): %x", Aff, appAff);
+ sLog->outError("Processors marked in UseProcessors bitmask (hex) %x not accessible for realmd. Accessible processors bitmask (hex): %x", Aff, appAff);
else if (SetProcessAffinityMask(hProcess,curAff))
- sLog.outString("Using processors (bitmask, hex): %x", curAff);
+ sLog->outString("Using processors (bitmask, hex): %x", curAff);
else
- sLog.outError("Can't set used processors (hex): %x", curAff);
+ sLog->outError("Can't set used processors (hex): %x", curAff);
}
sLog->outString();
}