1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-04 11:44:00 +00:00

Replace log.Println() with Statistics

This commit is contained in:
Kane York 2015-11-16 13:07:02 -08:00
parent cc3a160c29
commit a3971a27bf
4 changed files with 42 additions and 15 deletions

View file

@ -89,7 +89,7 @@ func UnsealRequest(form url.Values) (url.Values, error) {
retValues, err := url.ParseQuery(string(message))
if err != nil {
// Assume that the signature was accidentally correct but the contents were garbage
log.Print(err)
log.Println("Error unsealing request:", err)
return nil, ErrorInvalidSignature
}