session-ios/SessionUtilitiesKit/General/Logging.swift

9 lines
165 B
Swift
Raw Normal View History

2021-10-05 06:45:54 +02:00
import SignalCoreKit
2020-11-05 02:07:21 +01:00
2020-11-05 02:15:57 +01:00
public func SNLog(_ message: String) {
2020-11-05 02:07:21 +01:00
#if DEBUG
print("[Session] \(message)")
#endif
2021-10-05 06:45:54 +02:00
OWSLogger.info("[Session] \(message)")
2020-11-05 02:07:21 +01:00
}