|
|
@ -11,4 +11,20 @@ |
|
|
|
|
|
|
|
#import <pEpIOSToolbox/pEpIOSToolbox-Swift.h> |
|
|
|
|
|
|
|
#define LogInfo(...) [[Log shared] \ |
|
|
|
logInfoWithMessage:[NSString stringWithFormat:__VA_ARGS__] \ |
|
|
|
function:[NSString stringWithUTF8String:__FUNCTION__] \ |
|
|
|
filePath:[NSString stringWithUTF8String:__FILE__] \ |
|
|
|
fileLine:__LINE__]; |
|
|
|
#define LogWarn(...) [[Log shared] \ |
|
|
|
logWarnWithMessage:[NSString stringWithFormat:__VA_ARGS__] \ |
|
|
|
function:[NSString stringWithUTF8String:__FUNCTION__] \ |
|
|
|
filePath:[NSString stringWithUTF8String:__FILE__] \ |
|
|
|
fileLine:__LINE__]; |
|
|
|
#define LogError(...) [[Log shared] \ |
|
|
|
logErrorWithMessage:[NSString stringWithFormat:__VA_ARGS__] \ |
|
|
|
function:[NSString stringWithUTF8String:__FUNCTION__] \ |
|
|
|
filePath:[NSString stringWithUTF8String:__FILE__] \ |
|
|
|
fileLine:__LINE__]; |
|
|
|
|
|
|
|
#endif /* Logger_h */ |