summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLLogFileModuleMap.m
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-03-06 10:46:53 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-03-06 10:46:53 -0500
commit30b4270b2d4afee9bd97f1c0503805c9194eb031 (patch)
tree7ba00e24b855ee66c0928f665a05d3aa31f935a9 /SmartDeviceLink/SDLLogFileModuleMap.m
parent853fa76210f5b3af0b85eab0e144697da0491d76 (diff)
downloadsdl_ios-30b4270b2d4afee9bd97f1c0503805c9194eb031.tar.gz
Add additional log file modules
Diffstat (limited to 'SmartDeviceLink/SDLLogFileModuleMap.m')
-rw-r--r--SmartDeviceLink/SDLLogFileModuleMap.m21
1 files changed, 16 insertions, 5 deletions
diff --git a/SmartDeviceLink/SDLLogFileModuleMap.m b/SmartDeviceLink/SDLLogFileModuleMap.m
index be91f6ae8..de0da1b0f 100644
--- a/SmartDeviceLink/SDLLogFileModuleMap.m
+++ b/SmartDeviceLink/SDLLogFileModuleMap.m
@@ -31,30 +31,41 @@
}
+ (SDLLogFileModule *)sdl_protocolModule {
- return [SDLLogFileModule moduleWithName:@"Protocol" files:[NSSet setWithArray:@[@"SDLProtocol", @"SDLProtocolMessageAssembler", @"SDLV1ProtocolMessage", @"SDLV2ProtocolMessage"]]];
+ return [SDLLogFileModule moduleWithName:@"Protocol" files:[NSSet setWithArray:@[@"SDLProtocol", @"SDLProtocolMessageAssembler", @"SDLProtocolMessageDisassembler", @"SDLProtocolReceivedMessageRouter", @"SDLV1ProtocolMessage", @"SDLV2ProtocolMessage", @"SDLV1ProtocolHeader", @"SDLV2ProtocolHeader"]]];
}
+ (SDLLogFileModule *)sdl_rpcModule {
return [SDLLogFileModule moduleWithName:@"RPC" files:[NSSet setWithArray:@[@"SDLRPCPayload"]]];
}
++ (SDLLogFileModule *)sdl_dispatcherModule {
+ return [SDLLogFileModule moduleWithName:@"Dispatcher" files:[NSSet setWithArray:@[@"SDLNotificationDispatcher", @"SDLResponseDispatcher"]]];
+}
+
#pragma mark Managers
+ (SDLLogFileModule *)sdl_fileManagerModule {
- return [SDLLogFileModule moduleWithName:@"File" files:[NSSet setWithArray:@[@"SDLFileManager"]]];
+ return [SDLLogFileModule moduleWithName:@"File" files:[NSSet setWithArray:@[@"SDLFileManager", @"SDLFile", @"SDLArtwork", @"SDLListFilesOperation", @"SDLUploadFileOperation", @"SDLDeleteFileOperation"]]];
}
+ (SDLLogFileModule *)sdl_lifecycleManagerModule {
- return [SDLLogFileModule moduleWithName:@"Lifecycle" files:[NSSet setWithArray:@[@"SDLLifecycleManager"]]];
+ return [SDLLogFileModule moduleWithName:@"Lifecycle" files:[NSSet setWithArray:@[@"SDLLifecycleManager", @"SDLManager"]]];
}
+ (SDLLogFileModule *)sdl_lockscreenManagerModule {
- return [SDLLogFileModule moduleWithName:@"Lockscreen" files:[NSSet setWithArray:@[@"SDLLockScreenManager"]]];
+ return [SDLLogFileModule moduleWithName:@"Lockscreen" files:[NSSet setWithArray:@[@"SDLLockScreenManager", @"SDLLockScreenViewController"]]];
}
+ (SDLLogFileModule *)sdl_streamingMediaManagerModule {
- return [SDLLogFileModule moduleWithName:@"Streaming" files:[NSSet setWithArray:@[@"SDLStreamingMediaManager"]]];
+ return [SDLLogFileModule moduleWithName:@"Streaming" files:[NSSet setWithArray:@[@"SDLStreamingMediaManager", @"SDLTouchManager"]]];
+}
+
+
+#pragma mark Utilities
+
++ (SDLLogFileModule *)sdl_utilitiesModule {
+ return [SDLLogFileModule moduleWithName:@"Utilities" files:[NSSet setWithArray:@[@"SDLStateMachine"]]];
}
@end