diff options
author | kpdecker <kpdecker@gmail.com> | 2014-06-28 18:44:11 -0700 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2014-06-28 18:44:11 -0700 |
commit | b79e31e5a52b73b445ee27c5272a0ad213f26ae8 (patch) | |
tree | 907c518b199f31a512e885aea0c5d01193221809 /lib/handlebars/compiler/javascript-compiler.js | |
parent | 7172d167ddf9cbf1e8a0aae48970da42107e9e59 (diff) | |
download | handlebars.js-b79e31e5a52b73b445ee27c5272a0ad213f26ae8.zip handlebars.js-b79e31e5a52b73b445ee27c5272a0ad213f26ae8.tar.gz handlebars.js-b79e31e5a52b73b445ee27c5272a0ad213f26ae8.tar.bz2 |
Remove disassemble log statement
Fixes #772
Diffstat (limited to 'lib/handlebars/compiler/javascript-compiler.js')
-rw-r--r-- | lib/handlebars/compiler/javascript-compiler.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/handlebars/compiler/javascript-compiler.js b/lib/handlebars/compiler/javascript-compiler.js index 8bb5da6..4b9db92 100644 --- a/lib/handlebars/compiler/javascript-compiler.js +++ b/lib/handlebars/compiler/javascript-compiler.js @@ -1,4 +1,4 @@ -import { COMPILER_REVISION, REVISION_CHANGES, log } from "../base"; +import { COMPILER_REVISION, REVISION_CHANGES } from "../base"; import Exception from "../exception"; function Literal(value) { @@ -62,8 +62,6 @@ JavaScriptCompiler.prototype = { this.trackIds = this.options.trackIds; this.precompile = !asObject; - log('debug', this.environment.disassemble() + "\n\n"); - this.name = this.environment.name; this.isChild = !!context; this.context = context || { |