Skip to content

Commit

Permalink
logger should not be mutable
Browse files Browse the repository at this point in the history
  • Loading branch information
lhoward committed Feb 12, 2024
1 parent c2e2766 commit 5081da2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/IORing/IORing.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public final class IORing: CustomStringConvertible {
private let entries: Int
private let ringFd: Int32

var logger = Logger(label: "com.padl.IORing")
let logger = Logger(label: "com.padl.IORing")

private final class FixedBuffer {
fileprivate let count: Int
Expand Down

0 comments on commit 5081da2

Please sign in to comment.