summaryrefslogtreecommitdiff
path: root/include/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/event.h')
-rw-r--r--include/event.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/event.h b/include/event.h
index fcc292aea..85e406795 100644
--- a/include/event.h
+++ b/include/event.h
@@ -1074,7 +1074,7 @@ namespace Event
/** Called when a message is logged
* @param l The log message
*/
- virtual void OnLog(::Log *l) anope_abstract;
+ virtual void OnLog(Logger *l) anope_abstract;
};
struct CoreExport LogMessage : Events
@@ -1089,7 +1089,7 @@ namespace Event
* @param l The log message
* @param msg The final formatted message, derived from 'l'
*/
- virtual void OnLogMessage(LogInfo *li, const ::Log *l, const Anope::string &msg) anope_abstract;
+ virtual void OnLogMessage(LogInfo *li, const Logger *l, const Anope::string &msg) anope_abstract;
};
struct CoreExport CheckModes : Events