Merge pull request #781 from RoJamieson/develop

Changed "consistancy" to "consistency" in logging.go
This commit is contained in:
Carson Hoffman 2020-06-08 22:23:22 -04:00 committed by GitHub
commit 1d8aef5e9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ const (
// Logger can be used to replace the standard logging for discordgo // Logger can be used to replace the standard logging for discordgo
var Logger func(msgL, caller int, format string, a ...interface{}) var Logger func(msgL, caller int, format string, a ...interface{})
// msglog provides package wide logging consistancy for discordgo // msglog provides package wide logging consistency for discordgo
// the format, a... portion this command follows that of fmt.Printf // the format, a... portion this command follows that of fmt.Printf
// msgL : LogLevel of the message // msgL : LogLevel of the message
// caller : 1 + the number of callers away from the message source // caller : 1 + the number of callers away from the message source