![]() |
Kodi Documentation 18.0
Kodi is an open source media player and entertainment hub.
|
Macros | |
#define | DEBUG |
#define | LOG(s, ...) NSLog(@"[DEBUG] " s, ##__VA_ARGS__) |
#define | ILOG(s, ...) NSLog(@"[INFO] " s, ##__VA_ARGS__) |
#define | ELOG(s, ...) NSLog(@"[ERROR] " s, ##__VA_ARGS__) |
#define | DLOG(s, ...) LOG(s, ##__VA_ARGS__) |
#define | PRINT_SIGNATURE() LOG(@"%s", __PRETTY_FUNCTION__) |
#define DEBUG |
#define DLOG | ( | s, | |
... | |||
) | LOG(s, ##__VA_ARGS__) |
#define ELOG | ( | s, | |
... | |||
) | NSLog(@"[ERROR] " s, ##__VA_ARGS__) |
#define ILOG | ( | s, | |
... | |||
) | NSLog(@"[INFO] " s, ##__VA_ARGS__) |
#define LOG | ( | s, | |
... | |||
) | NSLog(@"[DEBUG] " s, ##__VA_ARGS__) |
#define PRINT_SIGNATURE | ( | ) | LOG(@"%s", __PRETTY_FUNCTION__) |