“Создать журнал в Python” Ответ

Создать журнал в 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

Файл журнала 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

Ответы похожие на “Создать журнал в Python”

Вопросы похожие на “Создать журнал в Python”

Больше похожих ответов на “Создать журнал в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования