Skip to content

Commit a40d45a

Browse files
committed
make it possible to add logger later
1 parent 027d576 commit a40d45a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Sources/Parchment/LoggerBundler.swift

+6-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ struct DateProvider {
1515
}
1616

1717
public final class LoggerBundler {
18-
private let components: [LoggerComponent]
18+
private var components: [LoggerComponent]
1919
private let buffer: TrackingEventBufferAdapter
2020
private let flushStrategy: BufferedEventFlushScheduler
2121

@@ -27,14 +27,17 @@ public final class LoggerBundler {
2727
buffer: TrackingEventBuffer,
2828
loggingStrategy: BufferedEventFlushScheduler
2929
) {
30-
assert(!components.isEmpty, "Should set the any logger with initializer")
31-
3230
self.components = components
3331
self.buffer = .init(buffer)
3432
self.flushStrategy = loggingStrategy
3533
}
3634

35+
public func add(component: LoggerComponent) {
36+
components.append(component)
37+
}
38+
3739
public func send(_ event: Loggable, with option: LoggingOption = .init()) async {
40+
assert(!components.isEmpty, "Should set the any logger")
3841
let loggers: [LoggerComponent] = {
3942
if let scope = option.scope {
4043
return components[scope]

0 commit comments

Comments
 (0)