mirror of
https://github.com/nicoverbruggen/NVAppUpdater.git
synced 2025-08-07 09:40:08 +02:00
17 lines
326 B
Swift
17 lines
326 B
Swift
//
|
|
// Created by Nico Verbruggen on 30/05/2024.
|
|
// Copyright © 2024 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
open class Log {
|
|
public static func text(_ text: String) {
|
|
self.handler(text)
|
|
}
|
|
|
|
public static var handler: (_ text: String) -> Void = { text in
|
|
print(text)
|
|
}
|
|
}
|