diff options
author | Adam <Adam@anope.org> | 2010-08-27 20:56:28 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-08-27 20:56:28 -0400 |
commit | c2ddecc2b1dbc9d055166bdf296da2e4536f74f6 (patch) | |
tree | 9b98582630a2debab628e23d4d796885f50ada74 /modules/core/ss_main.cpp | |
parent | 73fb94c55344b6ad788c925bf13325236402891f (diff) |
Added a new logging system
Diffstat (limited to 'modules/core/ss_main.cpp')
-rw-r--r-- | modules/core/ss_main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/ss_main.cpp b/modules/core/ss_main.cpp index 1b7188781..0e68a2795 100644 --- a/modules/core/ss_main.cpp +++ b/modules/core/ss_main.cpp @@ -41,10 +41,10 @@ class SSMain : public Module statserv = findbot("StatServ"); if (!statserv) { - Alog() << "Creating SS"; + Log() << "Creating SS"; statserv = new BotInfo("StatServ", Config->ServiceUser, Config->ServiceHost, "Stats Service"); } - Alog() << "Done creating SS"; + Log() << "Done creating SS"; this->AddCommand(statserv, &commandsshelp); } |