Skip to content

Commit 0eb2cfd

Browse files
committed
Fix Queryable Logger not being public
1 parent 684be62 commit 0eb2cfd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Sources/Queryable/Logger.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public struct QueryableLogger {
3030
///
3131
/// This can be useful for debugging.
3232
/// - 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.
33-
static func configure(inSubsystem subsystem: String? = Bundle.main.bundleIdentifier) {
33+
public static func configure(inSubsystem subsystem: String? = Bundle.main.bundleIdentifier) {
3434
logger = .init(subsystem: subsystem ?? "Queryable", category: "Queryable")
3535
}
3636

0 commit comments

Comments
 (0)