-->
Page 1 of 1

Disable 'debugf' Output

PostPosted: Fri Apr 17, 2015 5:48 am
by Bozz
Hi Community, beginners question.
I have successfully installed the Sming Framework under Eclipse and all is working fine.
When running a few examples MQTT for example , i see a lot of serial output.
Looks this is driven by 'debugf'
Is there a way to disable this ?

Re: Disable 'debugf' Output

PostPosted: Fri Apr 17, 2015 7:17 am
by Bozz
Solved. simple as always :P
in your init() either put Serial.systemDebugOutput to false or true.

void init()
{
Serial.systemDebugOutput(false); // Debug output to serial
....