forked from mirror/mautrix-discord
pre-commit: ban Msgf() from zerolog
Signed-off-by: Sumner Evans <sumner@beeper.com>
This commit is contained in:
parent
8c8cfa8f6b
commit
f69c02acb6
2 changed files with 8 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
repos:
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v4.4.0
|
||||
rev: v4.5.0
|
||||
hooks:
|
||||
- id: trailing-whitespace
|
||||
exclude_types: [markdown]
|
||||
|
@ -13,3 +13,8 @@ repos:
|
|||
hooks:
|
||||
- id: go-imports-repo
|
||||
- id: go-vet-repo-mod
|
||||
|
||||
- repo: https://github.com/beeper/pre-commit-go
|
||||
rev: v0.2.2
|
||||
hooks:
|
||||
- id: zerolog-ban-msgf
|
||||
|
|
4
user.go
4
user.go
|
@ -100,7 +100,7 @@ func discordToZeroLevel(level int) zerolog.Level {
|
|||
|
||||
func init() {
|
||||
discordgo.Logger = func(msgL, caller int, format string, a ...interface{}) {
|
||||
discordLog.WithLevel(discordToZeroLevel(msgL)).Caller(caller+1).Msgf(strings.TrimSpace(format), a...)
|
||||
discordLog.WithLevel(discordToZeroLevel(msgL)).Caller(caller+1).Msgf(strings.TrimSpace(format), a...) // zerolog-allow-msgf
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -548,7 +548,7 @@ func (user *User) Connect() error {
|
|||
}
|
||||
userDiscordLog := user.log.With().Str("component", "discordgo").Logger()
|
||||
session.Logger = func(msgL, caller int, format string, a ...interface{}) {
|
||||
userDiscordLog.WithLevel(discordToZeroLevel(msgL)).Caller(caller+1).Msgf(strings.TrimSpace(format), a...)
|
||||
userDiscordLog.WithLevel(discordToZeroLevel(msgL)).Caller(caller+1).Msgf(strings.TrimSpace(format), a...) // zerolog-allow-msgf
|
||||
}
|
||||
if !session.IsUser {
|
||||
session.Identify.Intents = BotIntents
|
||||
|
|
Loading…
Reference in a new issue