[Gd-chatter] r10792 - trunk/libraries/koala/sources/koala

hannes at gwydiondylan.org hannes at gwydiondylan.org
Thu Jun 8 12:26:35 CEST 2006


Author: hannes
Date: Thu Jun  8 12:26:33 2006
New Revision: 10792

Modified:
   trunk/libraries/koala/sources/koala/config.dylan
Log:
Bug: minor
add some more debug output
somehow, I guess xml-parser is not thread-safe, so parsing mime-type-map
while xmpp connection is initialized may break. (and mime-type-map might
be parsed uncompletely, so some mime-types are not correctly initialized)


Modified: trunk/libraries/koala/sources/koala/config.dylan
==============================================================================
--- trunk/libraries/koala/sources/koala/config.dylan	(original)
+++ trunk/libraries/koala/sources/koala/config.dylan	Thu Jun  8 12:26:33 2006
@@ -411,8 +411,8 @@
     if (xml$name(child) = #"extension")
       *mime-type-map*[as(<symbol>, xml$text(child))] := mime-type;
     else
-      warn("Skipping: %s %s: not an extension node!",
-           xml$name(child), xml$text(child));
+      warn("Skipping: %s %s %s: not an extension node!",
+           mime-type, xml$name(child), xml$text(child));
     end if;
   end for;
 end method xml$transform;



More information about the chatter mailing list