1 // Copyright 2015-present 650 Industries. All rights reserved. 2 3 #import <Foundation/Foundation.h> 4 5 #define LOG_LEVEL_DEF ddLogLevel 6 #import <CocoaLumberjack/CocoaLumberjack.h> 7 8 #if DEBUG 9 static const DDLogLevel ddLogLevel = DDLogLevelVerbose; 10 #else 11 static const DDLogLevel ddLogLevel = DDLogLevelWarning; 12 #endif 13 14 #define EXAssertMainThread() NSAssert([NSThread isMainThread], @"Method must be called on main thread") 15 16 @protocol EXKernelUtil <NSObject> 17 18 @end 19