We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bab8a2 commit 06fd877Copy full SHA for 06fd877
css_html_js_minify/js_minifier.py
@@ -33,7 +33,6 @@ def simple_replacer_js(js):
33
34
def js_minify_keep_comments(js):
35
"""Return a minified version of the Javascript string."""
36
- log.info("Compressing Javascript...")
37
ins, outs = StringIO(js), StringIO()
38
JavascriptMinify(ins, outs).minify()
39
return force_single_line_js(outs.getvalue())
0 commit comments