summaryrefslogtreecommitdiff
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-27 16:39:32 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-27 16:39:32 +0000
commitbcf2e57d8125fceb2f573fe77ac122158aa75a13 (patch)
treeceb0f4350324282227b059cc2a78b6ba7739f888 /src/command_parse.cpp
parentffbbfa9cd6c5e30f4ba84d51bb31e42a3e7ebd41 (diff)
Debug to try figure this out ..
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7895 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r--src/command_parse.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index 3ffbfe3db..a155a6207 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -604,14 +604,19 @@ int CommandParser::TranslateUIDs(TranslateType to, const std::string &source, st
{
case TR_NICK:
/* Translate single nickname */
+ ServerInstance->Log(DEBUG,"TR_NICK");
user = ServerInstance->FindNick(source);
if (user)
{
+ ServerInstance->Log(DEBUG,"Managed UUID");
dest = user->uuid;
translations++;
}
else
+ {
+ ServerInstance->Log(DEBUG,"Had to use source.. (%s)", source.c_str());
dest = source;
+ }
break;
case TR_NICKLIST:
{