Skip to content

Commit 24c2ae8

Browse files
authored
Merge pull request containerd#10026 from ningmingxiao/info_exited_event
internal/cri: log ctr's exit event on info level
2 parents ff66ec7 + 7bd4d34 commit 24c2ae8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/cri/server/events.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ func (c *criService) startSandboxExitMonitor(ctx context.Context, id string, exi
6464
ExitedAt: protobuf.ToTimestamp(exitedAt),
6565
}
6666

67-
log.L.Debugf("received exit event %+v", e)
67+
log.L.Infof("received exit event %+v", e)
6868

6969
err = func() error {
7070
dctx := ctrdutil.NamespacedContext()
@@ -133,7 +133,7 @@ func (c *criService) startContainerExitMonitor(ctx context.Context, id string, p
133133
ExitedAt: protobuf.ToTimestamp(exitedAt),
134134
}
135135

136-
log.L.Debugf("received exit event %+v", e)
136+
log.L.Infof("received exit event %+v", e)
137137

138138
err = func() error {
139139
dctx := ctrdutil.NamespacedContext()

0 commit comments

Comments
 (0)