1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +01:00

adds logging

This commit is contained in:
Amir Raminfar
2024-12-13 13:20:15 -08:00
parent 242c3e74dc
commit c0b40da585

View File

@@ -27,6 +27,8 @@ type ContainerStore struct {
}
func NewContainerStore(ctx context.Context, client Client, filter ContainerFilter) *ContainerStore {
log.Debug().Str("host", client.Host().Name).Interface("filter", filter).Msg("initializing container store")
s := &ContainerStore{
containers: xsync.NewMapOf[string, *Container](),
client: client,