-
DescriptionI am using bleak to connect to my device, in my code i use the logging module for python. What I DidI found the following: i need help disabling the logging in bleak |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can use Also happy to take a PR to change this particular instance from |
Beta Was this translation helpful? Give feedback.
You can use
bleak_logger = logging.getLogger("bleak")
to get a Logger object for Bleak and thenbleak_logger.setLevel(logging.WARNING)
to change the logging level.Also happy to take a PR to change this particular instance from
logger.info
tologger.debug
since this seems like it should just be a debug message.