server/__init__.py
changeset 8626 e2ba137b2bf9
parent 8580 d753d6a6798f
child 8694 d901c36bcfce
--- a/server/__init__.py	Fri Dec 14 14:08:14 2012 +0100
+++ b/server/__init__.py	Tue Dec 11 18:20:00 2012 +0100
@@ -77,10 +77,14 @@
 DBG_REPO = 4
 #: multi-sources
 DBG_MS   = 8
+#: hooks
+DBG_HOOKS = 16
+#: operations
+DBG_OPS = 32
 #: more verbosity
-DBG_MORE = 16
+DBG_MORE = 64
 #: all level enabled
-DBG_ALL  = DBG_RQL + DBG_SQL + DBG_REPO + DBG_MS + DBG_MORE
+DBG_ALL  = DBG_RQL + DBG_SQL + DBG_REPO + DBG_MS + DBG_HOOKS + DBG_OPS + DBG_MORE
 
 #: current debug mode
 DEBUG = 0