Mercurial > code > home > repos > light9
changeset 930:ba7ff8c1d8f8
more lines to debug
Ignore-this: abe1c132edd58ae77f2a0d312723724a
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Tue, 11 Jun 2013 21:20:26 +0000 |
parents | c20c2eea6fce |
children | 3d8ad77176ec |
files | light9/rdfdb/patchreceiver.py light9/rdfdb/syncedgraph.py |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/light9/rdfdb/patchreceiver.py Tue Jun 11 20:25:02 2013 +0000 +++ b/light9/rdfdb/patchreceiver.py Tue Jun 11 21:20:26 2013 +0000 @@ -43,7 +43,7 @@ def put(self): try: p = Patch(jsonRepr=self.request.body) - log.info("received patch -%d +%d" % (len(p.delGraph), len(p.addGraph))) + log.debug("received patch -%d +%d" % (len(p.delGraph), len(p.addGraph))) cb(p) except: traceback.print_exc()
--- a/light9/rdfdb/syncedgraph.py Tue Jun 11 20:25:02 2013 +0000 +++ b/light9/rdfdb/syncedgraph.py Tue Jun 11 21:20:26 2013 +0000 @@ -133,7 +133,7 @@ central server has sent us a patch """ patchQuads(self._graph, p.delQuads, p.addQuads, perfect=True) - log.info("graph now has %s statements" % len(self._graph)) + log.debug("graph now has %s statements" % len(self._graph)) try: self.runDepsOnNewPatch(p) except Exception: