diff service/reasoning/graphop.py @ 923:4ae49c6adecb

errors and logging in reasoning Ignore-this: 112b2985e0f5fd2a36abded52a5292b6 darcs-hash:20130922073139-312f9-4bb490330fe3e64b3ee87176e7eb2385255c4c72
author drewp <drewp@bigasterisk.com>
date Sun, 22 Sep 2013 00:31:39 -0700
parents 1815d2343a3f
children 0f2ac014d9ea
line wrap: on
line diff
--- a/service/reasoning/graphop.py	Sun Sep 22 00:30:20 2013 -0700
+++ b/service/reasoning/graphop.py	Sun Sep 22 00:31:39 2013 -0700
@@ -30,12 +30,12 @@
     if log.getEffectiveLevel() <= logging.INFO:
         lost = stmtsA - stmtsB
         if lost:
-            log.info("lost statements:")
+            log.info("graph A only:")
             for s in lost:
                 log.info("  %s", s)
         new = stmtsB - stmtsA
         if new:
-            log.info("new statements:")
+            log.info("graph B only:")
             for s in new:
                 log.info("  %s", s)
     return False