Ignore:
Timestamp:
May 9, 2013, 11:24:05 AM (12 years ago)
Author:
[email protected]
Message:

[BlackBerry] Set up logging buffer on start of jsc executable
https://bugs.webkit.org/show_bug.cgi?id=114688

Patch by Joe Mason <[email protected]> on 2013-05-09
Reviewed by Rob Buis.

Internal PR: 322715
Internally Reviewed By: Jeff Rogers

  • jsc.cpp:

(main): call BB::Platform::setupApplicationLogging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jsc.cpp

    r149130 r149825  
    8787#endif
    8888
     89#if PLATFORM(BLACKBERRY)
     90#include <BlackBerryPlatformLog.h>
     91#endif
     92
    8993using namespace JSC;
    9094using namespace WTF;
     
    523527
    524528    timeBeginPeriod(1);
     529#endif
     530
     531#if PLATFORM(BLACKBERRY)
     532    // Write all WTF logs to the system log
     533    BlackBerry::Platform::setupApplicationLogging("jsc");
    525534#endif
    526535
Note: See TracChangeset for help on using the changeset viewer.