Skip to content

Commit

Permalink
debug verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
Maks-Jago committed May 1, 2023
1 parent 5da0e85 commit e0102d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sources/Store/Loggers/ConsoleDebugLogger.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ public struct ConsoleDebugLogger: ActionLogger {
}

public extension ActionLogger where Self == ConsoleDebugLogger {
static var consoleDebug: ActionLogger { ConsoleDebugLogger(filters: [.verbose]) }
static var consoleDebug: ActionLogger { ConsoleDebugLogger(filters: [.default]) }
static var consoleDebugVerbose: ActionLogger { ConsoleDebugLogger(filters: [.verbose]) }
static var consoleDebugOnlyErrors: ActionLogger { ConsoleDebugLogger(filters: [.errorOnly]) }

static func consoleDebug(extraFilters: [ActionFilter]) -> ActionLogger {
Expand Down

0 comments on commit e0102d1

Please sign in to comment.