Last active
March 21, 2017 13:03
-
-
Save tternes/b8bd1e7090ee856d70b7ea257399f921 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implementation AppDelegate | |
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification | |
{ | |
// ... | |
EVIRegisterLoggingCallback(^(EVILogLevel level, NSString *message) { | |
NSLog(@"EVIStreamer (%@): %@", EVILogLevelString(level), message); | |
}); | |
// ... | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment