Skip to content

Commit 6f9712a

Browse files
HiDaN4haarts
authored andcommitted
- Add missing override for init() method in MultiOutput class
1 parent 01aa9e1 commit 6f9712a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/src/outputs/multi_output.dart

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ class MultiOutput extends LogOutput {
1717
return outputs;
1818
}
1919

20+
@override
21+
void init() {
22+
_outputs.forEach((o) => o.init());
23+
}
24+
2025
@override
2126
void output(OutputEvent event) {
2227
_outputs.forEach((o) => o.output(event));

0 commit comments

Comments
 (0)