From 1cd9f98478a23c702db21c92c44415456408d1fc Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Tue, 30 Aug 2011 00:15:55 -0700 Subject: [PATCH] web console is where it's at (this also fixes the reported source of a console.log in the web inspector) --- src/bootstrap.coffee | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/bootstrap.coffee b/src/bootstrap.coffee index 86330cc11..1c136194f 100644 --- a/src/bootstrap.coffee +++ b/src/bootstrap.coffee @@ -1,11 +1,5 @@ # This file is the first thing loaded on startup. -console.originalLog = console.log -console.log = (thing) -> - OSX.NSLog thing.toString() if thing? - console.originalLog thing - - # load require() function root = OSX.NSBundle.mainBundle.resourcePath code = OSX.NSString.stringWithContentsOfFile path = "#{root}/src/require.js"