From 853fa76210f5b3af0b85eab0e144697da0491d76 Mon Sep 17 00:00:00 2001 From: Joel Fischer Date: Mon, 6 Mar 2017 10:34:05 -0500 Subject: SDLDebugTool logs are translated to new logs --- SmartDeviceLink/SDLLogFileModuleMap.m | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'SmartDeviceLink/SDLLogFileModuleMap.m') 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 -- cgit v1.2.1