summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLLogModel.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/SDLLogModel.m
parentecdc48956e107009cafceccdf8154285d6d139da (diff)
downloadsdl_ios-853fa76210f5b3af0b85eab0e144697da0491d76.tar.gz
SDLDebugTool logs are translated to new logs
Diffstat (limited to 'SmartDeviceLink/SDLLogModel.m')
-rw-r--r--SmartDeviceLink/SDLLogModel.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLLogModel.m b/SmartDeviceLink/SDLLogModel.m
index 46b89c464..6e9aeccb7 100644
--- a/SmartDeviceLink/SDLLogModel.m
+++ b/SmartDeviceLink/SDLLogModel.m
@@ -53,7 +53,7 @@ NS_ASSUME_NONNULL_BEGIN
#pragma mark - Description
- (NSString *)description {
- return [NSString stringWithFormat:@"SDLLogModel (%@): timestamp: %@, file name: %@, module: %@, function: %@, line: %ld, queue: %@, message: %@", [self sdl_stringForLogLevel:self.level], self.timestamp, self.fileName, self.moduleName, self.functionName, self.line, self.queueLabel, self.message];
+ return [NSString stringWithFormat:@"SDLLogModel (%@): timestamp: %@, file name: %@, module: %@, function: %@, line: %ld, queue: %@, message: %@", [self sdl_stringForLogLevel:self.level], self.timestamp, self.fileName, self.moduleName, self.functionName, (long)self.line, self.queueLabel, self.message];
}
- (NSString *)sdl_stringForLogLevel:(SDLLogLevel)level {