Skip to content

Commit

Permalink
fixed printf error
Browse files Browse the repository at this point in the history
  • Loading branch information
PotatoCloud committed Jul 9, 2023
1 parent 003847c commit a8cc309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func (r *Root) Startup() error {
r.logger.Error(fmt.Sprintf("unit %s start fail, error: %s", unit.Name, err.Error()))
return err
}
r.logger.Info("unit %s startup", unit.Name)
r.logger.Info(fmt.Sprintf("unit %s startup", unit.Name))
}

return nil
Expand Down

0 comments on commit a8cc309

Please sign in to comment.