Skip to content

Commit

Permalink
Merge pull request #20 from seriousben/remove-extra-logging
Browse files Browse the repository at this point in the history
remove logging
  • Loading branch information
seriousben authored Feb 19, 2024
2 parents 80e26a6 + 60e3c74 commit e26b921
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/badges.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@ func sizeOfRune(c rune) float32 {
return 0
}

log.Println(fontSizeData[0])
// log.Println(fontSizeData[0])

i := sort.Search(len(fontSizeData), func(i int) bool { return fontSizeData[i].Char >= c })
if i < len(fontSizeData) {
return fontSizeData[i].Size
}
log.Println("not found code: ", c, " - ", i)
// log.Println("not found code: ", c, " - ", i)
return emSize
}

Expand Down

0 comments on commit e26b921

Please sign in to comment.