Commit f79278f0 authored by yann300's avatar yann300

remove console.dir

parent d5b9f6a6
...@@ -55,7 +55,6 @@ function Compiler (handleImportCall) { ...@@ -55,7 +55,6 @@ function Compiler (handleImportCall) {
} }
var compile = function (files, target) { var compile = function (files, target) {
console.dir("compile");
self.event.trigger('compilationStarted', []) self.event.trigger('compilationStarted', [])
internalCompile(files, target) internalCompile(files, target)
} }
...@@ -212,7 +211,6 @@ function Compiler (handleImportCall) { ...@@ -212,7 +211,6 @@ function Compiler (handleImportCall) {
} else if (missingInputs !== undefined && missingInputs.length > 0) { } else if (missingInputs !== undefined && missingInputs.length > 0) {
// try compiling again with the new set of inputs // try compiling again with the new set of inputs
console.dir("compilationFinshed");
internalCompile(source.sources, source.target, missingInputs) internalCompile(source.sources, source.target, missingInputs)
} else { } else {
data = updateInterface(data) data = updateInterface(data)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment