Quellcode durchsuchen

Add Python All Loggers

Add the snippet that allows all configured loggers to be retrieved in
Python and fix a missing import in ascii_only.
master
Nate Bohman vor 3 Jahren
Ursprung
Commit
d701948f60
Signiert von: Nate Bohman <natrinicle@gmail.com> GPG-Schlüssel-ID: C10546A54ABA1CE5
2 geänderte Dateien mit 11 neuen und 1 gelöschten Zeilen
  1. +9
    -0
      python_utils/all_loggers.py
  2. +2
    -1
      python_utils/ascii_only.py

+ 9
- 0
python_utils/all_loggers.py Datei anzeigen

@@ -0,0 +1,9 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import logging

all_except_root_loggers = [
logging.getLogger(name) for name in logging.root.manager.loggerDict
]
all_loggers = [logging.getLogger(), *all_except_root_loggers]

+ 2
- 1
python_utils/ascii_only.py Datei anzeigen

@@ -1,11 +1,12 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import logging
import re

logger = logging.getLogger(__name__)

ascii_characters = [chr(i) for i in range(32,127)]
ascii_characters = [chr(i) for i in range(32, 127)]
ascii_char_rgx = re.compile("{}".format(re.escape(ascii_characters)))



Laden…
Abbrechen
Speichern