mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
12 lines
229 B
Swift
12 lines
229 B
Swift
import Foundation
|
|
|
|
enum AppLogger {
|
|
static func info(_ message: String) {
|
|
print("[DivKitPlayground] [INFO] \(message)")
|
|
}
|
|
|
|
static func error(_ message: String) {
|
|
print("[DivKitPlayground] [ERROR] \(message)")
|
|
}
|
|
}
|