“Python -Protokollierung BasicConfig -Zeit” Code-Antworten

Python -Protokollierung zur Datei

import logging
import sys

logger = logging.getLogger()
logger.setLevel(logging.INFO)
formatter = logging.Formatter('%(asctime)s | %(levelname)s | %(message)s', 
                              '%m-%d-%Y %H:%M:%S')

stdout_handler = logging.StreamHandler(sys.stdout)
stdout_handler.setLevel(logging.DEBUG)
stdout_handler.setFormatter(formatter)

file_handler = logging.FileHandler('logs.log')
file_handler.setLevel(logging.DEBUG)
file_handler.setFormatter(formatter)

logger.addHandler(file_handler)
logger.addHandler(stdout_handler)
Benja

Python -Protokollierung BasicConfig -Zeit

logging.basicConfig(filename='my_log_file.log', format='%(asctime)s - %(message)s', level=logging.INFO)
Bewildered Badger

Ähnliche Antworten wie “Python -Protokollierung BasicConfig -Zeit”

Fragen ähnlich wie “Python -Protokollierung BasicConfig -Zeit”

Weitere verwandte Antworten zu “Python -Protokollierung BasicConfig -Zeit” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen