You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added
Desk logging is now routed through the shared SendbirdLogger (Logger.desk / ProductIdentifier.desk) and emitted in the unified Sendbird log format.
LogLevel ↔ AuthLogLevel bidirectional conversion. Note: Desk has no verbose level, so AuthLogLevel.verbose floors to LogLevel.debug when read back through the legacy API.
Deprecated
SBDSKMain.setSBDSKLogLevel(_:) — use SendbirdLogger.setLevel(_:) or SendbirdLogger.setLevel(_:for: .desk) instead. Existing calls are forwarded to a compatibility setter and continue to
work.
Changed
Internal debugPrint / print log sites replaced with Logger.desk calls gated by SendbirdLogger.level(for: .desk).
Once SendbirdLogger.setLevel(...) has been called, SBDSKMain.setSBDSKLogLevel(_:) is ignored.