From bc146ae8d11d425f4446ff51d1d5a528bed91cff Mon Sep 17 00:00:00 2001 From: "psyc://psyced.org/~lynX" <@> Date: Fri, 21 May 2010 11:30:21 +0200 Subject: [PATCH] + --- world/net/psyc/library.i | 2 ++ 1 file changed, 2 insertions(+) diff --git a/world/net/psyc/library.i b/world/net/psyc/library.i index dedb30a..dd3e7a9 100644 --- a/world/net/psyc/library.i +++ b/world/net/psyc/library.i @@ -70,6 +70,7 @@ varargs mixed lookup_identification(mixed source, vamixed givenUNI) { #endif varargs string psyc_name(mixed source, vastring localpart) { + P3((">> psyc_name(%O, %O)\n", source, localpart)) string s; if (s = obj2unl[source]) return s; @@ -106,6 +107,7 @@ varargs string psyc_name(mixed source, vastring localpart) { // why store it with an ip? nobody uses that anyway!? // is it being used anywhere in the parser? naaah. s = myUNL + s; + P3((">>> psyc_name for %O is %O\n", source, s)) unl2obj[s] = source; return obj2unl[source] = s; }