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 8b02ed1 commit 0587cb1Copy full SHA for 0587cb1
lib/logstream/logstream.go
@@ -456,8 +456,10 @@ func (g *ContainerLogConsumer) stop() error {
456
func (m *LogStream) DisconnectContainer(container LogProducingContainer) error {
457
var err error
458
459
+ m.log.Info().Str("Container", container.GetContainerID()).Msg("Disconnecting container")
460
+
461
if container.IsRunning() {
- m.log.Trace().Str("container", container.GetContainerID()).Msg("Disconnecting container")
462
+ m.log.Info().Str("Container", container.GetContainerID()).Msg("Stopping log producer")
463
err = container.StopLogProducer()
464
}
465
0 commit comments