update a few more log event property names

This commit is contained in:
Kenneth Jenkins 2025-04-22 10:16:17 -07:00
parent 4842e696cf
commit a80936361e
7 changed files with 12 additions and 12 deletions

View file

@ -222,9 +222,9 @@ func (backend *Backend) Put(ctx context.Context, records []*databroker.Record) (
}
ctx = log.WithContext(ctx, func(c zerolog.Context) zerolog.Context {
return c.Str("db_op", "put").
Str("db_id", record.Id).
Str("db_type", record.Type)
return c.Str("db-op", "put").
Str("db-id", record.Id).
Str("db-type", record.Type)
})
backend.update(record)