parent
711c6db98d
commit
395c8202c6
@ -1,13 +1,16 @@ |
|||||||
// Copyright © 2023 Stormbird PTE. LTD. |
// Copyright © 2023 Stormbird PTE. LTD. |
||||||
|
|
||||||
import Foundation |
import Foundation |
||||||
|
import os.log |
||||||
|
|
||||||
|
private let logger = Logger(subsystem: Bundle.main.bundleIdentifier!, category: "attestation") |
||||||
|
|
||||||
func infoLog(_ message: Any, callerFunctionName: String = #function) { |
func infoLog(_ message: Any, callerFunctionName: String = #function) { |
||||||
guard Attestation.isLoggingEnabled else { return } |
guard Attestation.isLoggingEnabled else { return } |
||||||
NSLog("\(message) from: \(callerFunctionName)") |
logger.info("\(String(describing: message)) from: \(callerFunctionName)") |
||||||
} |
} |
||||||
|
|
||||||
func errorLog(_ message: Any, callerFunctionName: String = #function) { |
func errorLog(_ message: Any, callerFunctionName: String = #function) { |
||||||
guard Attestation.isLoggingEnabled else { return } |
guard Attestation.isLoggingEnabled else { return } |
||||||
NSLog("\(message) from: \(callerFunctionName)") |
logger.error("\(String(describing: message)) from: \(callerFunctionName)") |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue