Skip to content

Commit

Permalink
Fix log formatting when parsing first_run from meta.json (#4656)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebriskin authored Dec 26, 2024
1 parent 6e10f80 commit dfe5947
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ func (m *Module) FirstRun(
logger.Debugw("meta.json not found, skipping first run", "error", err)
return nil
case err != nil:
logger.Warn("failed to parse meta.json, skipping first run", "error", err)
logger.Warnw("failed to parse meta.json, skipping first run", "error", err)
return nil
}

Expand Down

0 comments on commit dfe5947

Please sign in to comment.