File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ struct DateProvider {
15
15
}
16
16
17
17
public final class LoggerBundler {
18
- private let components : [ LoggerComponent ]
18
+ private var components : [ LoggerComponent ]
19
19
private let buffer : TrackingEventBufferAdapter
20
20
private let flushStrategy : BufferedEventFlushScheduler
21
21
@@ -27,14 +27,17 @@ public final class LoggerBundler {
27
27
buffer: TrackingEventBuffer ,
28
28
loggingStrategy: BufferedEventFlushScheduler
29
29
) {
30
- assert ( !components. isEmpty, " Should set the any logger with initializer " )
31
-
32
30
self . components = components
33
31
self . buffer = . init( buffer)
34
32
self . flushStrategy = loggingStrategy
35
33
}
36
34
35
+ public func add( component: LoggerComponent ) {
36
+ components. append ( component)
37
+ }
38
+
37
39
public func send( _ event: Loggable , with option: LoggingOption = . init( ) ) async {
40
+ assert ( !components. isEmpty, " Should set the any logger " )
38
41
let loggers : [ LoggerComponent ] = {
39
42
if let scope = option. scope {
40
43
return components [ scope]
You can’t perform that action at this time.
0 commit comments