summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLLogModel.m
diff options
context:
space:
mode:
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 {