“Utwórz log w Python” Kod odpowiedzi

Utwórz log w 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

Plik dziennika Pythona

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

Odpowiedzi podobne do “Utwórz log w Python”

Pytania podobne do “Utwórz log w Python”

Więcej pokrewnych odpowiedzi na “Utwórz log w Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu