Hello. I’m using Log.info to show debugging messages to a serial window. However, when wifi cloud is connected, I get constant messages from [comm.protocol] INFO.
I begin my code with this:
SerialLogHandler logHandler(LOG_LEVEL_INFO);
Is there an easy way to suppress just the [comm.protocol] messages, or alternately, is there a different LOG_LEVEL I should use, and together with that, what would be the correct way to call the function at the new level?
Log.info("My Message");
This is what I presently call.
I don’t mind what “level” it is, I just want a configuration that will log messages I intentionally send, without any extra background reporting.
Thank you.