diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2022-03-03 14:46:51 +0100 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2022-03-17 09:51:04 +0100 |
| commit | d6d414221a8f71ea27bf0bbb4c789f37c9be3ad6 (patch) | |
| tree | 40587edb9300e7796f87d1dc8513a9536b38ef9b | |
| parent | 062b9082f7c573eeff272565c84ddb5f5a9665aa (diff) | |
| download | mullvadvpn-d6d414221a8f71ea27bf0bbb4c789f37c9be3ad6.tar.xz mullvadvpn-d6d414221a8f71ea27bf0bbb4c789f37c9be3ad6.zip | |
Add seconds to log formatting for dates
| -rw-r--r-- | ios/MullvadVPN/Logging/LogFormatting.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/MullvadVPN/Logging/LogFormatting.swift b/ios/MullvadVPN/Logging/LogFormatting.swift index 2ccbdf4fc6..c41c2b758b 100644 --- a/ios/MullvadVPN/Logging/LogFormatting.swift +++ b/ios/MullvadVPN/Logging/LogFormatting.swift @@ -11,7 +11,7 @@ import Foundation extension Date { func logFormatDate() -> String { let formatter = DateFormatter() - formatter.dateFormat = "dd/MM/yyyy @ HH:mm" + formatter.dateFormat = "dd/MM/yyyy @ HH:mm:ss" return formatter.string(from: self) } |
