You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Adafruit_CAP1188::begin() there are a handful of Serial.print calls, reporting "Useful debugging info" according to a comment.
This can't be turned off. It's not guarded with an #ifdef DEBUG or anything like that.
It seems presumptuous for a library to presume I want that stuff printed to Serial. I don't.
I shouldn't have to fork library code to suppress this noise in my Serial output. This printing should be optional -- preferably off by default -- or moved to a separate function entirely. It's not appropriate to burden every begin() call with it.
The text was updated successfully, but these errors were encountered:
In Adafruit_CAP1188::begin() there are a handful of Serial.print calls, reporting "Useful debugging info" according to a comment.
This can't be turned off. It's not guarded with an #ifdef DEBUG or anything like that.
It seems presumptuous for a library to presume I want that stuff printed to Serial. I don't.
I shouldn't have to fork library code to suppress this noise in my Serial output. This printing should be optional -- preferably off by default -- or moved to a separate function entirely. It's not appropriate to burden every begin() call with it.
The text was updated successfully, but these errors were encountered: