We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b36e7db commit 872fd75Copy full SHA for 872fd75
lib/logstream/logstream.go
@@ -808,6 +808,11 @@ func (g *ContainerLogConsumer) Accept(l tc.Log) {
808
809
if g.IsStopped() {
810
// if the consumer is stopped, we don't want to accept any more logs
811
+ g.ls.log.Error().
812
+ Str("Test", g.ls.testName).
813
+ Str("Container", g.name).
814
+ Str("Log", string(l.Content)).
815
+ Msg("Consumer has finished, but you are still trying to accept logs. This should never happen")
816
return
817
}
818
0 commit comments