diff options
author | Adam <Adam@anope.org> | 2012-02-08 18:00:24 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-02-08 18:00:24 -0500 |
commit | 1bc8e2ab82db9ce00faaa44887338873a2cd9210 (patch) | |
tree | 22523f23f143af444fbb79fdc252966b2e44c5ff /include/logger.h | |
parent | 089c85b27e0674dc8102b15e507ebdd7386eeb87 (diff) |
Removed operserv:notifications in favor of log blocks, as well as some other notifiications
Diffstat (limited to 'include/logger.h')
-rw-r--r-- | include/logger.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/logger.h b/include/logger.h index 5f611b277..3ba93a1e9 100644 --- a/include/logger.h +++ b/include/logger.h @@ -55,12 +55,12 @@ class CoreExport Log Log(User *u, Channel *c, const Anope::string &category = ""); /* LOG_USER */ - explicit Log(User *u, const Anope::string &category = ""); + explicit Log(User *u, const Anope::string &category = "", BotInfo *bi = NULL); /* LOG_SERVER */ - Log(Server *s, const Anope::string &category = ""); + explicit Log(Server *s, const Anope::string &category = "", BotInfo *bi = NULL); - Log(BotInfo *b, const Anope::string &category = ""); + explicit Log(BotInfo *b, const Anope::string &category = ""); ~Log(); |