diff options
author | Adam <Adam@anope.org> | 2012-05-26 02:36:02 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-05-26 02:36:02 -0400 |
commit | 1e49e9b9dc6ccded06e2855b99223a13d69200b7 (patch) | |
tree | 750ca079fd0bd92dfc7672142e3efbfa81091474 /src/protocol.cpp | |
parent | 2cbfbc98e9bab3b63adf307bb9066203600ef16e (diff) |
This should actually be LOG_TERMINAL, quitmsg isn't logged to terminal on shutdown
Diffstat (limited to 'src/protocol.cpp')
-rw-r--r-- | src/protocol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol.cpp b/src/protocol.cpp index 2c853a5f7..de55f4aec 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -570,7 +570,7 @@ bool IRCdMessage::OnError(const Anope::string &, const std::vector<Anope::string { if (!params.empty()) { - Log() << "ERROR: " << params[0]; + Log(LOG_TERMINAL) << "ERROR: " << params[0]; quitmsg = "Received ERROR from uplink: " + params[0]; } |