Files
divkit/client/ios/DivKitPlayground/Utils/AppLogger.swift
T

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)")
}
}