Skip to content

Commit 1e98833

Browse files
committed
Removed debug statements.
- Legacy-Id: 13229
1 parent 3d6fed4 commit 1e98833

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

ietf/doc/models.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -443,15 +443,11 @@ def htmlized(self):
443443
key = name.split('.')[0]
444444
html = cache.get(key)
445445
if not html:
446-
debug.say('cache miss for %s' % key)
447446
# The path here has to match the urlpattern for htmlized
448447
# documents in order to produce correct intra-document links
449448
html = markup(text, path=settings.HTMLIZER_URL_PREFIX)
450449
if html:
451-
debug.say('cache set for %s' % key)
452450
cache.set(key, html, settings.HTMLIZER_CACHE_TIME)
453-
else:
454-
debug.say('cache hit for %s' % key)
455451
return html
456452

457453
class Meta:

0 commit comments

Comments
 (0)