We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61fd3cf commit 969f3b0Copy full SHA for 969f3b0
adafruit_logging.py
@@ -305,19 +305,19 @@ def addHandler(self, handler: Handler):
305
def log(self, log_level: int, format_string: str, *args):
306
"""Dummy implementation."""
307
308
- def debug(self, format_string: str, *args):
+ def debug(self, msg: str, *args):
309
310
311
- def info(self, format_string: str, *args):
+ def info(self, msg: str, *args):
312
313
314
- def warning(self, format_string: str, *args):
+ def warning(self, msg: str, *args):
315
316
317
- def error(self, format_string: str, *args):
+ def error(self, msg: str, *args):
318
319
320
- def critical(self, format_string: str, *args):
+ def critical(self, msg: str, *args):
321
322
323
def _emit(self, log_level: int, message: str):
0 commit comments