From: martin f. krafft Date: Sat, 15 Mar 2008 13:51:40 +0000 (+0100) Subject: improve debug output X-Git-Tag: 2.41~120 X-Git-Url: http://git.tremily.us/?p=ikiwiki.git;a=commitdiff_plain;h=df85743f63267cf7fc1f74f9f28d32f66d01e51f improve debug output Signed-off-by: martin f. krafft (cherry picked from commit 63c7e393692b44bfa69d8b78a936f58beadef2b2) --- diff --git a/plugins/proxy.py b/plugins/proxy.py index cf5588b24..55c552ab2 100755 --- a/plugins/proxy.py +++ b/plugins/proxy.py @@ -108,7 +108,7 @@ class _IkiWikiExtPluginXMLRPCHandler(object): def send_rpc(self, cmd, in_fd, out_fd, **kwargs): xml = xmlrpclib.dumps(sum(kwargs.iteritems(), ()), cmd) - self._debug_fn('sending xml to ikiwiki to call procedure %s: [%s]' % (cmd, xml)) + self._debug_fn("calling ikiwiki procedure `%s': [%s]" % (cmd, xml)) _IkiWikiExtPluginXMLRPCHandler._write(out_fd, xml) self._debug_fn('reading response from ikiwiki...')