Skip to content

Commit ca922e3

Browse files
authored
remove Logger.metadata property (#36)
Motivation: Logger had two ways to access the metadata: logger[metadataKey: "foo"] = "bar" and logger.metadata["foo"] = "bar" . The first one is the preferred API (as it doesn't force the `LogHandler`s to store it in a dictionary) but the second one was still available for cases where you need to import/export the whole metadata storage. Instead of exposing this as a dictionary, we should make the 'whole-metadata import/export' opaque. We're close to tagging 1.0.0 however let's design this API properly and add a sensible implementation for 1.1.0 or so. Moditications: remove `Logger.metadata` property Result: - We can design the import/export APIs and add them when they're ready. - the `LogHandler` API is unchanged
1 parent 09c2837 commit ca922e3

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed

Sources/Logging/Logging.swift

-14
Original file line numberDiff line numberDiff line change
@@ -79,20 +79,6 @@ extension Logger {
7979
}
8080
}
8181

82-
/// Get or set the entire metadata storage.
83-
///
84-
/// - note: Logging metadata behaves as a value that means a change to the logging metadata will only affect the
85-
/// very `Logger` it was changed on.
86-
@inlinable
87-
public var metadata: Logger.Metadata {
88-
get {
89-
return self.handler.metadata
90-
}
91-
set {
92-
self.handler.metadata = newValue
93-
}
94-
}
95-
9682
/// Get or set the log level configured for this `Logger`.
9783
///
9884
/// - note: `Logger`s treat `logLevel` as a value. This means that a change in `logLevel` will only affect this

Tests/LoggingTests/TestLogger.swift

+1-3
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,7 @@ internal struct TestLogHandler: LogHandler {
4545

4646
func log(level: Logger.Level, message: Logger.Message, metadata: Logger.Metadata?, file: String, function: String, line: UInt) {
4747
let metadata = (self._metadataSet ? self.metadata : MDC.global.metadata).merging(metadata ?? [:], uniquingKeysWith: { _, new in new })
48-
var l = logger // local copy since we gonna override its metadata
49-
l.metadata = metadata
50-
l.log(level: level, message, metadata: metadata, file: file, function: function, line: line)
48+
logger.log(level: level, message, metadata: metadata, file: file, function: function, line: line)
5149
self.recorder.record(level: level, metadata: metadata, message: message)
5250
}
5351

0 commit comments

Comments
 (0)