From 2fe56ba077a65f247c6b466b1a515d3dd8c1dc4a Mon Sep 17 00:00:00 2001 From: Corey Johnson & Nathan Sobo Date: Thu, 12 Jul 2012 11:11:45 -0600 Subject: [PATCH] Remove logging --- src/stdlib/child-process.coffee | 1 - 1 file changed, 1 deletion(-) diff --git a/src/stdlib/child-process.coffee b/src/stdlib/child-process.coffee index f22cc09a9..e8885a7a2 100644 --- a/src/stdlib/child-process.coffee +++ b/src/stdlib/child-process.coffee @@ -14,7 +14,6 @@ class ChildProccess options.stderr = @bufferLines(options.stderr) if options.stderr $native.exec command, options, (exitStatus, stdout, stderr) -> - console.log exitStatus if exitStatus != 0 error = new Error("Exec failed (#{exitStatus}) command '#{command}'") error.exitStatus = exitStatus