summaryrefslogtreecommitdiffstats
path: root/src/nbblib/bs.py
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2008-06-26 00:47:44 +0200
committerHans Ulrich Niedermann <hun@n-dimensional.de>2008-07-15 12:28:53 +0200
commit9a9987be67d8ac3cad703bcdd96e8c5966e809da (patch)
treed84be92229b0b20305e9dfe257a8214e81593291 /src/nbblib/bs.py
parentd9a9fb74a0e5ae3cfc948608c9084036f49b57f4 (diff)
downloadnbb-9a9987be67d8ac3cad703bcdd96e8c5966e809da.tar.gz
nbb-9a9987be67d8ac3cad703bcdd96e8c5966e809da.tar.xz
nbb-9a9987be67d8ac3cad703bcdd96e8c5966e809da.zip
Introduce logging module
Diffstat (limited to 'src/nbblib/bs.py')
-rw-r--r--src/nbblib/bs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nbblib/bs.py b/src/nbblib/bs.py
index ac09b97..70f4ee0 100644
--- a/src/nbblib/bs.py
+++ b/src/nbblib/bs.py
@@ -46,13 +46,13 @@ class BSSourceTree(object):
"""Find BS tree type and return it"""
if len(cls.plugins) < 1:
raise NoPluginsRegistered(cls)
- logging.debug("CLASS %s", cls)
+ #logging.debug("CLASS %s", cls)
matches = PluginDict()
for key, klass in cls.plugins.iteritems():
try:
t = klass(vcs_tree, context)
if t.tree_root() == vcs_tree.tree_root():
- logging.debug("KLASS %s", klass)
+ #logging.debug("KLASS %s", klass)
matches[key] = t
except NotABSSourceTree, e:
pass