From 0363d87cc3b3db47abeb51f76774e3d1483bb508 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Sat, 20 Jul 2024 23:37:29 +0300 Subject: [PATCH] [ios] log the local time with timezone on the app launch Signed-off-by: Kiryl Kaveryn --- iphone/CoreApi/CoreApi/Logger/Logger.mm | 7 +++++-- platform/platform_ios.mm | 5 +++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/iphone/CoreApi/CoreApi/Logger/Logger.mm b/iphone/CoreApi/CoreApi/Logger/Logger.mm index a64143c995..4cd24c279d 100644 --- a/iphone/CoreApi/CoreApi/Logger/Logger.mm +++ b/iphone/CoreApi/CoreApi/Logger/Logger.mm @@ -74,6 +74,11 @@ static BOOL _fileLoggingEnabled = NO; + (void)setFileLoggingEnabled:(BOOL)fileLoggingEnabled { fileLoggingEnabled ? [self enableFileLogging] : [self disableFileLogging]; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + LOG_SHORT(LINFO, ("Local time:", NSDate.date.description.UTF8String, ", Time Zone:", NSTimeZone.defaultTimeZone.abbreviation.UTF8String)); + }); + LOG(LINFO, ("File logging is enabled:", _fileLoggingEnabled ? "YES" : "NO")); } + (BOOL)fileLoggingEnabled { @@ -179,7 +184,6 @@ bool AssertMessage(base::SrcPoint const & src, std::string const & message) logger.fileHandle = fileHandle; _fileLoggingEnabled = YES; - LOG(LINFO, ("File logging is enabled")); } + (void)disableFileLogging { @@ -190,7 +194,6 @@ bool AssertMessage(base::SrcPoint const & src, std::string const & message) [self removeFileAtPath:kLogFilePath]; _fileLoggingEnabled = NO; - LOG(LINFO, ("File logging is disabled")); } + (void)logMessageWithLevel:(base::LogLevel)level src:(base::SrcPoint const &)src message:(std::string const &)message { diff --git a/platform/platform_ios.mm b/platform/platform_ios.mm index 1cbc50f1c0..70a36ad431 100644 --- a/platform/platform_ios.mm +++ b/platform/platform_ios.mm @@ -64,8 +64,9 @@ Platform::Platform() UIDevice * device = UIDevice.currentDevice; device.batteryMonitoringEnabled = YES; - NSLog(@"Device: %@, SystemName: %@, SystemVersion: %@", device.model, device.systemName, - device.systemVersion); + LOG(LINFO, ("Device:", device.model.UTF8String, "SystemName:", + device.systemName.UTF8String, "SystemVersion:", + device.systemVersion.UTF8String)); } //static