diff --git a/tldp/doctypes/common.py b/tldp/doctypes/common.py index 0611116..b301a0c 100644 --- a/tldp/doctypes/common.py +++ b/tldp/doctypes/common.py @@ -49,11 +49,11 @@ class SignatureChecker(object): for sig in cls.signatures: try: sindex = buf.index(sig.lower()) - logger.debug("Found signature %r in %s at %s; doctype %s.", + logger.debug("YES FOUND signature %r in %s at %s; doctype %s.", sig, f.name, sindex, cls) return sindex except ValueError: - logger.debug("Signature %r not found in %s for type %s", + logger.debug("not found signature %r in %s for type %s", sig, f.name, cls.__name__) return None