Skip to content

Commit

Permalink
Fix Queryable Logger not being public
Browse files Browse the repository at this point in the history
  • Loading branch information
SwiftedMind committed Jul 23, 2023
1 parent 684be62 commit 0eb2cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Queryable/Logger.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public struct QueryableLogger {
///
/// This can be useful for debugging.
/// - Parameter subsystem: The subsystem. If none is provided, the bundle's identifier will try to be used and if it is specifically set to `nil`, then `Queryable` will be used.
static func configure(inSubsystem subsystem: String? = Bundle.main.bundleIdentifier) {
public static func configure(inSubsystem subsystem: String? = Bundle.main.bundleIdentifier) {
logger = .init(subsystem: subsystem ?? "Queryable", category: "Queryable")
}

Expand Down

0 comments on commit 0eb2cfd

Please sign in to comment.