Skip to content

Commit

Permalink
Fix debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Bodner committed May 16, 2016
1 parent 357af8c commit 0504929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion approval/approval.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func Register(name string, f Func) error {

func Lookup(name string) (Func, error) {
log.Debug("approvalMap has",approvalMap)
log.Debug("looking for '%s'\n",name)
log.Debugf("looking for '%s'\n",name)
f, ok := approvalMap[strings.ToLower(name)]
if !ok {
return nil, fmt.Errorf("Unknown Approval Algorithm %s", name)
Expand Down

0 comments on commit 0504929

Please sign in to comment.