backend: fix bad printf format, thanks to go vet
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
38c18ef1aa
commit
a93d6c8c49
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ func treatIssue(pathname string, team fic.Team) {
|
|||
claim.State = "new"
|
||||
claim.Update()
|
||||
|
||||
log.Printf("%s [OOK] New comment added to issue id=%d: id_description=%s\n", id, claim.Id, desc.Id)
|
||||
log.Printf("%s [OOK] New comment added to issue id=%d: id_description=%d\n", id, claim.Id, desc.Id)
|
||||
if err = os.Remove(pathname); err != nil {
|
||||
log.Printf("%s [ERR] %s\n", id, err)
|
||||
}
|
||||
|
|
Reference in a new issue