summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLLogFileModuleMap.m
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-03-06 10:34:05 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-03-06 10:34:05 -0500
commit853fa76210f5b3af0b85eab0e144697da0491d76 (patch)
tree1fae56240eb5aa4e5654204344fe30df545d4abf /SmartDeviceLink/SDLLogFileModuleMap.m
parentecdc48956e107009cafceccdf8154285d6d139da (diff)
downloadsdl_ios-853fa76210f5b3af0b85eab0e144697da0491d76.tar.gz
SDLDebugTool logs are translated to new logs
Diffstat (limited to 'SmartDeviceLink/SDLLogFileModuleMap.m')
-rw-r--r--SmartDeviceLink/SDLLogFileModuleMap.m15
1 files changed, 12 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLLogFileModuleMap.m b/SmartDeviceLink/SDLLogFileModuleMap.m
index 66f75d29c..be91f6ae8 100644
--- a/SmartDeviceLink/SDLLogFileModuleMap.m
+++ b/SmartDeviceLink/SDLLogFileModuleMap.m
@@ -18,11 +18,12 @@
[self sdl_protocolModule],
[self sdl_fileManagerModule],
[self sdl_lifecycleManagerModule],
- [self sdl_lockscreenManagerModule]]];
+ [self sdl_lockscreenManagerModule],
+ [self sdl_streamingMediaManagerModule]]];
}
+ (SDLLogFileModule *)sdl_transportModule {
- return [SDLLogFileModule moduleWithName:@"Transport" files:[NSSet setWithArray:@[@"SDLIAPSession", @"SDLIAPTransport"]]];
+ return [SDLLogFileModule moduleWithName:@"Transport" files:[NSSet setWithArray:@[@"SDLIAPSession", @"SDLIAPTransport", @"SDLStreamDelegate", @"SDLTCPTransport"]]];
}
+ (SDLLogFileModule *)sdl_proxyModule {
@@ -30,7 +31,11 @@
}
+ (SDLLogFileModule *)sdl_protocolModule {
- return [SDLLogFileModule moduleWithName:@"Protocol" files:[NSSet setWithArray:@[@"SDLProtocol"]]];
+ return [SDLLogFileModule moduleWithName:@"Protocol" files:[NSSet setWithArray:@[@"SDLProtocol", @"SDLProtocolMessageAssembler", @"SDLV1ProtocolMessage", @"SDLV2ProtocolMessage"]]];
+}
+
++ (SDLLogFileModule *)sdl_rpcModule {
+ return [SDLLogFileModule moduleWithName:@"RPC" files:[NSSet setWithArray:@[@"SDLRPCPayload"]]];
}
@@ -48,4 +53,8 @@
return [SDLLogFileModule moduleWithName:@"Lockscreen" files:[NSSet setWithArray:@[@"SDLLockScreenManager"]]];
}
++ (SDLLogFileModule *)sdl_streamingMediaManagerModule {
+ return [SDLLogFileModule moduleWithName:@"Streaming" files:[NSSet setWithArray:@[@"SDLStreamingMediaManager"]]];
+}
+
@end