Logging.h 499 B

1234567891011121314151617181920
  1. // Copyright (C) 2012 Sony Computer Entertainment Inc.
  2. // All Rights Reserved.
  3. #ifndef Logging_h
  4. #define Logging_h
  5. #include <wtf/Assertions.h>
  6. #ifndef LOG_CHANNEL_PREFIX
  7. #define LOG_CHANNEL_PREFIX Log
  8. #endif
  9. namespace JSC {
  10. extern WTFLogChannel LogDetachedJIT; // for logs coming from the detached JIT compiler
  11. extern WTFLogChannel LogDetachedJITProxy; // for logs coming from the JIT compiler proxy invoked by the VM
  12. } // namespace JSC
  13. #endif // #ifndef Logging_h