# HG changeset patch # User drewp@bigasterisk.com # Date 2013-03-26 16:51:48 # Node ID 8dc33b794924e88c7e181568b03290dbfe91639f # Parent dacbb278d91d6848028fb9cd7807d4d2d0822462 syncedgraph logging text Ignore-this: 3363b8be808e98ba40fa65601f893a06 diff --git a/light9/rdfdb/syncedgraph.py b/light9/rdfdb/syncedgraph.py --- a/light9/rdfdb/syncedgraph.py +++ b/light9/rdfdb/syncedgraph.py @@ -97,7 +97,7 @@ class SyncedGraph(CurrentStateGraphApi, # these could fail if we're out of sync. One approach: # Rerequest the full state from the server, try the patch # again after that, then give up. - log.info("%s add %s", [q[2] for q in p.delQuads], [q[2] for q in p.addQuads]) + log.info("del %s add %s", [q[2] for q in p.delQuads], [q[2] for q in p.addQuads]) patchQuads(self._graph, p.delQuads, p.addQuads, perfect=True) self.runDepsOnNewPatch(p) self._sender.sendPatch(p).addErrback(self.sendFailed) @@ -125,7 +125,7 @@ class SyncedGraph(CurrentStateGraphApi, # receive its patch correctly. However, we're in a bad # state since some dependencies may not have rerun traceback.print_exc() - log.warn("some dependencies may not have rerun") + log.warn("some graph dependencies may not have completely run") if self.initiallySynced: self.initiallySynced.callback(None)