mirror of
https://github.com/docker/docs.git
synced 2026-03-30 15:58:53 +07:00
11 lines
243 B
Go
11 lines
243 B
Go
package daemon
|
|
|
|
// logContainerEvent generates an event related to a container.
|
|
func (daemon *Daemon) logContainerEvent(container *Container, action string) {
|
|
daemon.EventsService.Log(
|
|
action,
|
|
container.ID,
|
|
container.Config.Image,
|
|
)
|
|
}
|