mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-11 13:02:14 -06:00
15 lines
430 B
Swift
15 lines
430 B
Swift
import OSLog
|
|
|
|
public extension Logger {
|
|
// MARK: Type Properties
|
|
|
|
/// Logger instance for the app's action extension.
|
|
static let bridgeKit = Logger(subsystem: subsystem, category: "AuthenticatorBridgeKit")
|
|
|
|
// MARK: Private
|
|
|
|
/// The Logger subsystem passed along with logs to the logging system to identify logs from this
|
|
/// application.
|
|
private static let subsystem = Bundle.main.bundleIdentifier!
|
|
}
|