[enh] log highlighter errors

This commit is contained in:
Adam Tauber 2015-01-15 18:39:40 +01:00
parent a04fafd419
commit a61a96d975
1 changed files with 1 additions and 0 deletions

View File

@ -115,6 +115,7 @@ def code_highlighter(codelines, language=None):
lexer = get_lexer_by_name(language, stripall=True)
except:
# if lexer is not found, using default one
logger.debug('highlighter cannot find lexer for {0}'.format(language))
lexer = get_lexer_by_name('text', stripall=True)
html_code = ''