“Python Logging BasicConfig Time” Respostas de código

Python Logging no arquivo

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 Logging BasicConfig Time

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

Respostas semelhantes a “Python Logging BasicConfig Time”

Perguntas semelhantes a “Python Logging BasicConfig Time”

Mais respostas relacionadas para “Python Logging BasicConfig Time” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código