openreplay/tracker/tracker-ios/Sources/ORTracker/Managers/DebugUtils.swift
Delirium c0da34c528
feat(ios): add Ios source (#1640)
* feat: add ios and rn source

* fix(ios): remove testing keys

* fix(tracker): change default path
2023-11-10 10:32:55 +01:00

16 lines
319 B
Swift

import Foundation
class DebugUtils: NSObject {
static func error(_ str: String) {
// TODO: fix this one
// MessageCollector.shared.sendMessage(ASIOSInternalError(content: str))
log(str)
}
static func log(_ str: String) {
#if DEBUG
print(str)
#endif
}
}