Skip to content

Commit

Permalink
fix: format
Browse files Browse the repository at this point in the history
  • Loading branch information
yearnfar committed Sep 1, 2020
1 parent c08d538 commit 3a306c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/gexrender/job.go
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ func (j *Job) Render() (err error) {
if strings.Contains(outputStr, "Finished composition") {
timeMatches := renderTimeRegex.FindStringSubmatch(outputStr)
if len(timeMatches) == 2 {
log.Infof(`[%s] rendering took ~%d sec.`, j.Uid, timeMatches[1])
log.Infof(`[%s] rendering took ~%s sec.`, j.Uid, timeMatches[1])
} else {
log.Infof(`[%s] rendering took ~%.0f sec.`, j.Uid, time.Since(startTime).Seconds())
}
Expand Down

0 comments on commit 3a306c6

Please sign in to comment.