“crear registro en python” Código de respuesta

crear registro en python

logging.basicConfig(filename="logfilename.log", level=logging.INFO)
# Log Creation

logging.info('your text goes here')
logging.error('your text goes here')
logging.debug('your text goes here')
CodeFun

archivo de registro de python

import logging
logging.basicConfig(filename='example.log', encoding='utf-8', level=logging.DEBUG)
logging.debug('This message should go to the log file')
logging.info('So should this')
logging.warning('And this, too')
logging.error('And non-ASCII stuff, too, like Øresund and Malmö')
Tense Termite

Respuestas similares a “crear registro en python”

Preguntas similares a “crear registro en python”

Más respuestas relacionadas con “crear registro en python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código