Suppressing messages from a plugin

I would like to know if there is any way to suppress messages from a plugin?

I buildt a plugin that utilizes the timelapse Events.CAPTURE_START and that is never triggered if the timelapse is off. The problem is that I dont have any official camera conntected and I keep getting the messages that "no photo could be taken" and "failed to render timelapse". Would it be possible for my plugin to disable these?

You might be able to bundle a tiny 1 pixel jpeg image with your plugin and then set the snapshot URL to the included image. Not sure if authentication would get in the way here or not, but place the image in static/img/ and then reference as http://127.0.0.1:5000/plugin/gopro/static/img/filename.jpg in the snapshot URL.

That is a great work-around actually! Thank you.