5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 02:12:29 +00:00

Fix missing arg for Errorf

This commit is contained in:
Wim 2017-11-04 15:01:03 +01:00
parent ba5649d259
commit 115c4b1aa7

View File

@ -111,7 +111,7 @@ func (b *Btelegram) Send(msg config.Message) (string, error) {
}
_, err := b.c.Send(c)
if err != nil {
log.Errorf("file upload failed: %#v")
log.Errorf("file upload failed: %#v", err)
}
}
}