diff options
author | Adam <Adam@anope.org> | 2011-10-09 02:52:13 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-10-09 02:52:13 -0400 |
commit | 9f850334a1110a8b976e401af45264dcfc7315c4 (patch) | |
tree | 89dfda632fcc1f0a01d66ea67ea44b8dbfb8144f /src/protocol.cpp | |
parent | af273e3da537ff60edb5f97b8081b550bd56d57d (diff) |
Give more verbose messages on startup
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 9ca6c1500..64932632e 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -532,7 +532,7 @@ bool IRCdMessage::OnCapab(const Anope::string &, const std::vector<Anope::string bool IRCdMessage::OnError(const Anope::string &, const std::vector<Anope::string> ¶ms) { if (!params.empty()) - Log() << params[0]; + Log(LOG_TERMINAL) << "Error: " << params[0]; return true; } |