Skip to content

Commit

Permalink
remove cast of string in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Moy committed Nov 1, 2016
1 parent 901a372 commit 3334d23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statsdaemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ func parseLine(line []byte) *Packet {
return nil
}
default:
log.Printf("ERROR: unrecognized type code %q for metric %s", typeCode, string(name))
log.Printf("ERROR: unrecognized type code %q for metric %s", typeCode, name)
return nil
}

Expand Down

0 comments on commit 3334d23

Please sign in to comment.