#import <Foundation/Foundation.h>
Go to the source code of this file.
|
#define | XSDotSDKLogTitle @"[XSDotSDK]" |
|
#define | NSLogObject(obj) if([XsensDotLog isLogEnable]) { NSLog(@"%@ %@", XSDotSDKLogTitle, obj); } |
|
#define | NSLogFunction() if([XsensDotLog isLogEnable]) { NSLog(@"%@ %s", XSDotSDKLogTitle, __FUNCTION__); } |
|
#define | NSLogFunctionWithInfo(obj) if([XsensDotLog isLogEnable]) { NSLog(@"%@ %s:%@", XSDotSDKLogTitle, __FUNCTION__, obj); } |
|
#define | NSLogFunctionFormat(format, args...) if([XsensDotLog isLogEnable]) { NSLog(@"%@ %s:" format, XSDotSDKLogTitle, __FUNCTION__, args); } |
|
◆ NSLogFunction
#define NSLogFunction |
( |
| ) |
if([XsensDotLog isLogEnable]) { NSLog(@"%@ %s", XSDotSDKLogTitle, __FUNCTION__); } |
◆ NSLogFunctionFormat
#define NSLogFunctionFormat |
( |
|
format, |
|
|
|
args... |
|
) |
| if([XsensDotLog isLogEnable]) { NSLog(@"%@ %s:" format, XSDotSDKLogTitle, __FUNCTION__, args); } |
◆ NSLogFunctionWithInfo
#define NSLogFunctionWithInfo |
( |
|
obj | ) |
if([XsensDotLog isLogEnable]) { NSLog(@"%@ %s:%@", XSDotSDKLogTitle, __FUNCTION__, obj); } |
◆ NSLogObject
◆ XSDotSDKLogTitle
#define XSDotSDKLogTitle @"[XSDotSDK]" |