summaryrefslogtreecommitdiff
path: root/src/protocol.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-10-09 02:52:13 -0400
committerAdam <Adam@anope.org>2011-10-09 02:52:13 -0400
commit9f850334a1110a8b976e401af45264dcfc7315c4 (patch)
tree89dfda632fcc1f0a01d66ea67ea44b8dbfb8144f /src/protocol.cpp
parentaf273e3da537ff60edb5f97b8081b550bd56d57d (diff)
Give more verbose messages on startup
Diffstat (limited to 'src/protocol.cpp')
-rw-r--r--src/protocol.cpp2
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> &params)
{
if (!params.empty())
- Log() << params[0];
+ Log(LOG_TERMINAL) << "Error: " << params[0];
return true;
}