[tor-commits] [flashproxy/master] Use console.log, not console.debug, in Internet Explorer.

dcf at torproject.org dcf at torproject.org
Sat Mar 2 10:01:56 UTC 2013


commit 8ad7433d63bc96e7295b4127b4d9aece69287e24
Author: David Fifield <david at bamsoftware.com>
Date:   Sat Mar 2 02:01:04 2013 -0800

    Use console.log, not console.debug, in Internet Explorer.
    
    IE doesn't appear to have console.debug.
---
 proxy/flashproxy.js |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/proxy/flashproxy.js b/proxy/flashproxy.js
index 193dba3..bf3fce9 100644
--- a/proxy/flashproxy.js
+++ b/proxy/flashproxy.js
@@ -94,8 +94,9 @@ function puts(s) {
     if (debug_div) {
         var at_bottom;
 
-        /* This shows up in the Web Console in Firefox. */
-        console.debug(s);
+        /* This shows up in the Web Console in Firefox and F12 developer tools
+           in Internet Explorer. */
+        (console.debug || console.log).call(console, s);
 
         /* http://www.w3.org/TR/cssom-view/#element-scrolling-members */
         at_bottom = (debug_div.scrollTop + debug_div.clientHeight === debug_div.scrollHeight);



More information about the tor-commits mailing list