* feat: add ios and rn source * fix(ios): remove testing keys * fix(tracker): change default path
16 lines
319 B
Swift
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
|
|
}
|
|
}
|