blob: 2ccbdf4fc67f69230ea75400c1121433cfb3175a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// LogFormatting.swift
// LogFormatting
//
// Created by pronebird on 09/09/2021.
// Copyright © 2021 Mullvad VPN AB. All rights reserved.
//
import Foundation
extension Date {
func logFormatDate() -> String {
let formatter = DateFormatter()
formatter.dateFormat = "dd/MM/yyyy @ HH:mm"
return formatter.string(from: self)
}
}
|