diff options
author | Adam <Adam@anope.org> | 2017-02-06 14:23:18 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2017-02-06 14:23:18 -0500 |
commit | 8b694bc392c36551e428b84454efb81cdbc8bcd3 (patch) | |
tree | ca3d1ca8aadac280c149518134de4208f91dad84 /modules/global/global.cpp | |
parent | 9ad06f49bbb3824139b0c0ee0a74898a18c8f735 (diff) |
Track override in CommandSource and use it in the logger
Diffstat (limited to 'modules/global/global.cpp')
-rw-r--r-- | modules/global/global.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/global/global.cpp b/modules/global/global.cpp index 1d7ff7073..3b7abb60a 100644 --- a/modules/global/global.cpp +++ b/modules/global/global.cpp @@ -41,7 +41,7 @@ class CommandGLGlobal : public Command return; } - logger.Command(LogType::ADMIN, source, _("{source} used {command} to send {0}"), msg); + logger.Admin(source, _("{source} used {command} to send {0}"), msg); service->SendGlobal(NULL, source.GetNick(), msg); } |