@@ -432,155 +432,155 @@ class LoggerAdapter(Generic[_L]):
432432 self ,
433433 msg : object ,
434434 * args : object ,
435- exc_info : _ExcInfoType = ... ,
436- stack_info : bool = ... ,
437- stacklevel : int = ... ,
438- extra : Mapping [str , object ] | None = ... ,
435+ exc_info : _ExcInfoType = None ,
436+ stack_info : bool = False ,
437+ stacklevel : int = 1 ,
438+ extra : Mapping [str , object ] | None = None ,
439439 ** kwargs : object ,
440440 ) -> None : ...
441441 def info (
442442 self ,
443443 msg : object ,
444444 * args : object ,
445- exc_info : _ExcInfoType = ... ,
446- stack_info : bool = ... ,
447- stacklevel : int = ... ,
448- extra : Mapping [str , object ] | None = ... ,
445+ exc_info : _ExcInfoType = None ,
446+ stack_info : bool = False ,
447+ stacklevel : int = 1 ,
448+ extra : Mapping [str , object ] | None = None ,
449449 ** kwargs : object ,
450450 ) -> None : ...
451451 def warning (
452452 self ,
453453 msg : object ,
454454 * args : object ,
455- exc_info : _ExcInfoType = ... ,
456- stack_info : bool = ... ,
457- stacklevel : int = ... ,
458- extra : Mapping [str , object ] | None = ... ,
455+ exc_info : _ExcInfoType = None ,
456+ stack_info : bool = False ,
457+ stacklevel : int = 1 ,
458+ extra : Mapping [str , object ] | None = None ,
459459 ** kwargs : object ,
460460 ) -> None : ...
461461 def warn (
462462 self ,
463463 msg : object ,
464464 * args : object ,
465- exc_info : _ExcInfoType = ... ,
466- stack_info : bool = ... ,
467- stacklevel : int = ... ,
468- extra : Mapping [str , object ] | None = ... ,
465+ exc_info : _ExcInfoType = None ,
466+ stack_info : bool = False ,
467+ stacklevel : int = 1 ,
468+ extra : Mapping [str , object ] | None = None ,
469469 ** kwargs : object ,
470470 ) -> None : ...
471471 def error (
472472 self ,
473473 msg : object ,
474474 * args : object ,
475- exc_info : _ExcInfoType = ... ,
476- stack_info : bool = ... ,
477- stacklevel : int = ... ,
478- extra : Mapping [str , object ] | None = ... ,
475+ exc_info : _ExcInfoType = None ,
476+ stack_info : bool = False ,
477+ stacklevel : int = 1 ,
478+ extra : Mapping [str , object ] | None = None ,
479479 ** kwargs : object ,
480480 ) -> None : ...
481481 def exception (
482482 self ,
483483 msg : object ,
484484 * args : object ,
485485 exc_info : _ExcInfoType = True ,
486- stack_info : bool = ... ,
487- stacklevel : int = ... ,
488- extra : Mapping [str , object ] | None = ... ,
486+ stack_info : bool = False ,
487+ stacklevel : int = 1 ,
488+ extra : Mapping [str , object ] | None = None ,
489489 ** kwargs : object ,
490490 ) -> None : ...
491491 def critical (
492492 self ,
493493 msg : object ,
494494 * args : object ,
495- exc_info : _ExcInfoType = ... ,
496- stack_info : bool = ... ,
497- stacklevel : int = ... ,
498- extra : Mapping [str , object ] | None = ... ,
495+ exc_info : _ExcInfoType = None ,
496+ stack_info : bool = False ,
497+ stacklevel : int = 1 ,
498+ extra : Mapping [str , object ] | None = None ,
499499 ** kwargs : object ,
500500 ) -> None : ...
501501 def log (
502502 self ,
503503 level : int ,
504504 msg : object ,
505505 * args : object ,
506- exc_info : _ExcInfoType = ... ,
507- stack_info : bool = ... ,
508- stacklevel : int = ... ,
509- extra : Mapping [str , object ] | None = ... ,
506+ exc_info : _ExcInfoType = None ,
507+ stack_info : bool = False ,
508+ stacklevel : int = 1 ,
509+ extra : Mapping [str , object ] | None = None ,
510510 ** kwargs : object ,
511511 ) -> None : ...
512512 else :
513513 def debug (
514514 self ,
515515 msg : object ,
516516 * args : object ,
517- exc_info : _ExcInfoType = ... ,
518- stack_info : bool = ... ,
519- extra : Mapping [str , object ] | None = ... ,
517+ exc_info : _ExcInfoType = None ,
518+ stack_info : bool = False ,
519+ extra : Mapping [str , object ] | None = None ,
520520 ** kwargs : object ,
521521 ) -> None : ...
522522 def info (
523523 self ,
524524 msg : object ,
525525 * args : object ,
526- exc_info : _ExcInfoType = ... ,
527- stack_info : bool = ... ,
528- extra : Mapping [str , object ] | None = ... ,
526+ exc_info : _ExcInfoType = None ,
527+ stack_info : bool = False ,
528+ extra : Mapping [str , object ] | None = None ,
529529 ** kwargs : object ,
530530 ) -> None : ...
531531 def warning (
532532 self ,
533533 msg : object ,
534534 * args : object ,
535- exc_info : _ExcInfoType = ... ,
536- stack_info : bool = ... ,
537- extra : Mapping [str , object ] | None = ... ,
535+ exc_info : _ExcInfoType = None ,
536+ stack_info : bool = False ,
537+ extra : Mapping [str , object ] | None = None ,
538538 ** kwargs : object ,
539539 ) -> None : ...
540540 def warn (
541541 self ,
542542 msg : object ,
543543 * args : object ,
544- exc_info : _ExcInfoType = ... ,
545- stack_info : bool = ... ,
546- extra : Mapping [str , object ] | None = ... ,
544+ exc_info : _ExcInfoType = None ,
545+ stack_info : bool = False ,
546+ extra : Mapping [str , object ] | None = None ,
547547 ** kwargs : object ,
548548 ) -> None : ...
549549 def error (
550550 self ,
551551 msg : object ,
552552 * args : object ,
553- exc_info : _ExcInfoType = ... ,
554- stack_info : bool = ... ,
555- extra : Mapping [str , object ] | None = ... ,
553+ exc_info : _ExcInfoType = None ,
554+ stack_info : bool = False ,
555+ extra : Mapping [str , object ] | None = None ,
556556 ** kwargs : object ,
557557 ) -> None : ...
558558 def exception (
559559 self ,
560560 msg : object ,
561561 * args : object ,
562562 exc_info : _ExcInfoType = True ,
563- stack_info : bool = ... ,
564- extra : Mapping [str , object ] | None = ... ,
563+ stack_info : bool = False ,
564+ extra : Mapping [str , object ] | None = None ,
565565 ** kwargs : object ,
566566 ) -> None : ...
567567 def critical (
568568 self ,
569569 msg : object ,
570570 * args : object ,
571- exc_info : _ExcInfoType = ... ,
572- stack_info : bool = ... ,
573- extra : Mapping [str , object ] | None = ... ,
571+ exc_info : _ExcInfoType = None ,
572+ stack_info : bool = False ,
573+ extra : Mapping [str , object ] | None = None ,
574574 ** kwargs : object ,
575575 ) -> None : ...
576576 def log (
577577 self ,
578578 level : int ,
579579 msg : object ,
580580 * args : object ,
581- exc_info : _ExcInfoType = ... ,
582- stack_info : bool = ... ,
583- extra : Mapping [str , object ] | None = ... ,
581+ exc_info : _ExcInfoType = None ,
582+ stack_info : bool = False ,
583+ extra : Mapping [str , object ] | None = None ,
584584 ** kwargs : object ,
585585 ) -> None : ...
586586
0 commit comments