Skip to content
This repository has been archived by the owner on Aug 30, 2019. It is now read-only.

Commit

Permalink
config: fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
gbbr committed Sep 17, 2018
1 parent 3a4ea3d commit 8151e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/merge_ini.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func (c *AgentConfig) loadIniConfig(conf *File) {
for key, rate := range rates {
serviceName, operationName, err := parseServiceAndOp(key)
if err != nil {
log.Errorf("Error when parsing names", err)
log.Errorf("Error when parsing names: %v", err)
continue
}
rate, err := strconv.ParseFloat(rate, 64)
Expand Down

0 comments on commit 8151e13

Please sign in to comment.