Eleirbag89 / TelegramBotPHP

A very simple PHP Telegram Bot API for sending messages.
http://eleirbag89.github.io/TelegramBotPHP
MIT License
809 stars 341 forks source link

Fix log crash when it try to log a CURLFile as text #110

Closed oraziocontarino closed 6 years ago

oraziocontarino commented 6 years ago

When send attachment function are used, the logger try to log the message.
In this scenario it will try to log a file as a general text, and so it will throw an exception.
Now we check instanceof CURLFile and then print only "File" string instead of CURLFile object.