fix warning encofing

This commit is contained in:
Martin/Geno 2019-06-27 14:51:02 +02:00
parent dbd8488539
commit e2fd87b904
No known key found for this signature in database
GPG Key ID: 9D7D3C6BFF600C6A
1 changed files with 1 additions and 1 deletions

View File

@ -92,6 +92,6 @@ func (out *Output) recvPresence(s xmpp.Sender, p xmpp.Packet) {
logPres.Debug("recv empty presence, maybe from joining muc") logPres.Debug("recv empty presence, maybe from joining muc")
return return
default: default:
logPres.Warnf("recv presence unsupported: %s -> %s", pres.Type, pres) logPres.Warnf("recv presence unsupported: %s -> %v", pres.Type, pres)
} }
} }