Skip to content

Commit

Permalink
MBX-2750 LogLevelError by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Akylbek Utekeshev committed Oct 19, 2023
1 parent f2e6fef commit 3e3f267
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Mindbox/Mindbox.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Mindbox: NSObject {
- In __RELEASE__ schema logs writes _async_ on queue with __qos: .utility__

- Warninig:
By default _logLevel_: __.none__
By default _logLevel_: __.error__
*/
public static let logger = MBLogger.shared

Expand Down
2 changes: 1 addition & 1 deletion MindboxLogger/Shared/MBLogger.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class MBLogger {

- Note: `.error` by default; `.none` for disable logging
*/
public var logLevel: LogLevel = .debug
public var logLevel: LogLevel = .error

private enum ExecutionMethod {
case sync(lock: NSRecursiveLock)
Expand Down

0 comments on commit 3e3f267

Please sign in to comment.