diff -r d59570643a49 -r f5300acd8f4f cubicweb/server/__init__.py --- a/cubicweb/server/__init__.py Tue Jul 30 14:47:25 2019 +0200 +++ b/cubicweb/server/__init__.py Wed Jul 24 15:28:11 2019 +0200 @@ -63,8 +63,6 @@ DBG_SQL = 2 #: repository events DBG_REPO = 4 -#: multi-sources -DBG_MS = 8 #: hooks DBG_HOOKS = 16 #: operations @@ -74,7 +72,7 @@ #: more verbosity DBG_MORE = 128 #: all level enabled -DBG_ALL = DBG_RQL + DBG_SQL + DBG_REPO + DBG_MS + DBG_HOOKS + DBG_OPS + DBG_SEC + DBG_MORE +DBG_ALL = DBG_RQL + DBG_SQL + DBG_REPO + DBG_HOOKS + DBG_OPS + DBG_SEC + DBG_MORE _SECURITY_ITEMS = [] _SECURITY_CAPS = ['read', 'add', 'update', 'delete', 'transition']