Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 292524 | Differences between
and this patch

Collapse All | Expand All

(-)source/class/qx/log/appender/Native.js (-1 / +1 lines)
Lines 47-53 Link Here
47
  {
47
  {
48
    this.base(arguments);
48
    this.base(arguments);
49
49
50
    if (typeof console != 'undefined' && console.debug && !console.emu) {
50
    if (typeof console != 'undefined' && (console.debug || console.log) && !console.emu) {
51
      this._appender = new qx.log.appender.FireBug;
51
      this._appender = new qx.log.appender.FireBug;
52
    } else {
52
    } else {
53
      this._appender = new qx.log.appender.Window;
53
      this._appender = new qx.log.appender.Window;
(-)source/class/qx/log/appender/FireBug.js (+2 lines)
Lines 73-78 Link Here
73
          case log.LEVEL_DEBUG:
73
          case log.LEVEL_DEBUG:
74
            if (console.debug) {
74
            if (console.debug) {
75
              console.debug(msg);
75
              console.debug(msg);
76
            } else if (console.log) {
77
              console.log(msg);
76
            }
78
            }
77
79
78
            break;
80
            break;

Return to bug 292524