Skip to content

Commit d1c84b8

Browse files
committed
+cluster tracelog setting should be public
1 parent 54e0d47 commit d1c84b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/DistributedActors/Cluster/ClusterSettings.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,9 @@ public struct ClusterSettings {
156156
/// When enabled traces _all_ incoming and outgoing cluster (e.g. handshake) protocol communication (remote messages).
157157
/// All logs will be prefixed using `[tracelog:cluster]`, for easier grepping.
158158
#if SACT_TRACE_CLUSTER
159-
var traceLogLevel: Logger.Level? = .warning
159+
public var traceLogLevel: Logger.Level? = .warning
160160
#else
161-
var traceLogLevel: Logger.Level?
161+
public var traceLogLevel: Logger.Level?
162162
#endif
163163

164164
public init(node: Node, tls: TLSConfiguration? = nil) {

0 commit comments

Comments
 (0)