@@ -305,7 +305,7 @@ def log(self, level: int, msg: str, *args) -> None:
305
305
:param int level: the priority level at which to log
306
306
:param str msg: the core message string with embedded
307
307
formatting directives
308
- :param args: arguments to ``format_string.format() ``;
308
+ :param args: arguments to ``msg % args ``;
309
309
can be empty
310
310
"""
311
311
@@ -316,7 +316,7 @@ def debug(self, msg: str, *args) -> None:
316
316
317
317
:param str fmsg: the core message string with embedded
318
318
formatting directives
319
- :param args: arguments to ``format_string.format() ``;
319
+ :param args: arguments to ``msg % args ``;
320
320
can be empty
321
321
"""
322
322
self ._log (DEBUG , msg , * args )
@@ -326,7 +326,7 @@ def info(self, msg: str, *args) -> None:
326
326
327
327
:param str msg: the core message string with embedded
328
328
formatting directives
329
- :param args: arguments to ``format_string.format() ``;
329
+ :param args: arguments to ``msg % args ``;
330
330
can be empty
331
331
"""
332
332
@@ -337,7 +337,7 @@ def warning(self, msg: str, *args) -> None:
337
337
338
338
:param str msg: the core message string with embedded
339
339
formatting directives
340
- :param args: arguments to ``format_string.format() ``;
340
+ :param args: arguments to ``msg % args ``;
341
341
can be empty
342
342
"""
343
343
@@ -348,7 +348,7 @@ def error(self, msg: str, *args) -> None:
348
348
349
349
:param str msg: the core message string with embedded
350
350
formatting directives
351
- :param args: arguments to ``format_string.format() ``;
351
+ :param args: arguments to ``msg % args ``;
352
352
can be empty
353
353
"""
354
354
@@ -359,7 +359,7 @@ def critical(self, msg: str, *args) -> None:
359
359
360
360
:param str msg: the core message string with embedded
361
361
formatting directives
362
- :param args: arguments to ``format_string.format() ``;
362
+ :param args: arguments to ``msg % args ``;
363
363
can be empty
364
364
"""
365
365
self ._log (CRITICAL , msg , * args )
0 commit comments