Як записати у файл, використовуючи журнал Python модуль?


128

Як я можу використовувати модуль реєстрації в Python для запису у файл? Кожен раз, коли я намагаюся його використовувати, він просто роздруковує повідомлення.

Відповіді:


172

Приклад використання, logging.basicConfigа неlogging.fileHandler()

logging.basicConfig(filename=logname,
                            filemode='a',
                            format='%(asctime)s,%(msecs)d %(name)s %(levelname)s %(message)s',
                            datefmt='%H:%M:%S',
                            level=logging.DEBUG)

logging.info("Running Urban Planning")

self.logger = logging.getLogger('urbanGUI')

Для того, п’ять частин роблять наступне:

  1. встановити вихідний файл ( filename=logname)
  2. встановіть його для додавання, а не перезапису ( filemode='a')
  3. визначити формат вихідного повідомлення ( format=...)
  4. визначити формат часу виводу (datefmt='%H:%M:%S' )
  5. і визначити мінімальний рівень повідомлення, який він прийме ( level=logging.DEBUG).

Чи може ім'я файлу бути місцем hdfs? Якщо так, то як?
Доповнив Яків

чи можна встановити шлях до файлу
neeraja

1
переконайтеся, що це не в if __name__ == '__main__':
курсі,

@RamiAlloush чи можете ви, будь ласка, докладно? Чому так? (цікавість :))
нотіх

@notihs, сервер не запускає файл сценарію безпосередньо, тому розділ нижче if __name__ == '__main__':не виконується.
Рамі Аллуш

71

Взяте з " кулінарної книги ":

# create logger with 'spam_application'
logger = logging.getLogger('spam_application')
logger.setLevel(logging.DEBUG)
# create file handler which logs even debug messages
fh = logging.FileHandler('spam.log')
fh.setLevel(logging.DEBUG)
logger.addHandler(fh)

І ти добре підеш.

PS Не забудьте прочитати також HOWTO ведення журналу .


4
Щоб відповісти на ваше перше запитання, сміливо подивіться заголовок питання, яке я задав. Я перейшов за посиланням, яке ви надали, і це було корисно. Я скопіював код, який ви мені дали, і я помилявся з припущенням, що зможу успішно використовувати logger.info ("повідомлення") та logger.warning ("повідомлення")? Мені вдалося записати у файл за допомогою logger.warning, однак logger.info, здається, не пише у файл.
Таккун

Спробуйте видалити setLevel call. Читаючи документи обробника, схоже, що всі повідомлення обробляються за замовчуванням.
thegrinner

2
Я можу виписати у файл лише за допомогою logger.warning("message"), не можу використовувати logger.info("message")ні logger.debug("message"). Це трохи дратує.
м3нда

3
У прикладі коду @EliBendersky написано відсутній 1 крок, якщо ви хочете писати інформаційні / налагоджувальні повідомлення. Сам реєстратор потребує власного рівня журналу, щоб він був налаштований на прийняття такого рівня повідомлень журналу, наприклад logger.setLevel(logging.DEBUG). Реєстратори можуть бути налаштовані з декількома обробниками; рівень, налаштований у реєстраторі, визначає, які повідомлення журналу рівня серйозності надсилати кожному з його обробників, а рівні, встановлені в обробниках, визначають, які рівні оброблятиме обробник. Зауважте, що тим, хто хоче надрукувати інформаційні повідомлення, потрібно встановити це INFOяк у реєстраторі, так і в обробнику.
тестові роботи

Я оновив зразок для виконання logger.setLevel(logging.DEBUG)- дякую за коментарі
Елі Бендерський

13

Я вважаю за краще використовувати конфігураційний файл. Це дозволяє мені перемикати рівні журналу, місця розташування тощо без зміни коду, коли я переходжу від розробки до випуску. Я просто пакую інший конфігураційний файл з тим же ім’ям і з тими ж визначеними реєстраторами.

import logging.config
if __name__ == '__main__':
    # Configure the logger
    # loggerConfigFileName: The name and path of your configuration file
    logging.config.fileConfig(path.normpath(loggerConfigFileName))

    # Create the logger
    # Admin_Client: The name of a logger defined in the config file
    mylogger = logging.getLogger('Admin_Client')

    msg='Bite Me'
    myLogger.debug(msg)
    myLogger.info(msg)
    myLogger.warn(msg)
    myLogger.error(msg)
    myLogger.critical(msg)

    # Shut down the logger
    logging.shutdown()

Ось мій код для файлу конфігурації журналу

#These are the loggers that are available from the code
#Each logger requires a handler, but can have more than one
[loggers]
keys=root,Admin_Client


#Each handler requires a single formatter
[handlers]
keys=fileHandler, consoleHandler


[formatters]
keys=logFormatter, consoleFormatter


[logger_root]
level=DEBUG
handlers=fileHandler


[logger_Admin_Client]
level=DEBUG
handlers=fileHandler, consoleHandler
qualname=Admin_Client
#propagate=0 Does not pass messages to ancestor loggers(root)
propagate=0


# Do not use a console logger when running scripts from a bat file without a console
# because it hangs!
[handler_consoleHandler]
class=StreamHandler
level=DEBUG
formatter=consoleFormatter
args=(sys.stdout,)# The comma is correct, because the parser is looking for args


[handler_fileHandler]
class=FileHandler
level=DEBUG
formatter=logFormatter
# This causes a new file to be created for each script
# Change time.strftime("%Y%m%d%H%M%S") to time.strftime("%Y%m%d")
# And only one log per day will be created. All messages will be amended to it.
args=("D:\\Logs\\PyLogs\\" + time.strftime("%Y%m%d%H%M%S")+'.log', 'a')


[formatter_logFormatter]
#name is the name of the logger root or Admin_Client
#levelname is the log message level debug, warn, ect 
#lineno is the line number from where the call to log is made
#04d is simple formatting to ensure there are four numeric places with leading zeros
#4s would work as well, but would simply pad the string with leading spaces, right justify
#-4s would work as well, but would simply pad the string with trailing spaces, left justify
#filename is the file name from where the call to log is made
#funcName is the method name from where the call to log is made
#format=%(asctime)s | %(lineno)d | %(message)s
#format=%(asctime)s | %(name)s | %(levelname)s | %(message)s
#format=%(asctime)s | %(name)s | %(module)s-%(lineno) | %(levelname)s | %(message)s
#format=%(asctime)s | %(name)s | %(module)s-%(lineno)04d | %(levelname)s | %(message)s
#format=%(asctime)s | %(name)s | %(module)s-%(lineno)4s | %(levelname)-8s | %(message)s

format=%(asctime)s | %(levelname)-8s | %(lineno)04d | %(message)s


#Use a separate formatter for the console if you want
[formatter_consoleFormatter]
format=%(asctime)s | %(levelname)-8s | %(filename)s-%(funcName)s-%(lineno)04d | %(message)s

1
Іменування файлу з датою вимагає подвійного використання %%в Python 3. напр.time.strftime("%%Y%%m%%D")
AH

9

http://docs.python.org/library/logging.html#logging.basicConfig

logging.basicConfig(filename='/path/to/your/log', level=....)

1
Це зберігає журнали у файлі, це добре. Що робити, якщо разом з цим, я хотів би, щоб він записував результати на терміналі?
Рішабх Аграхарі

Офіційна loggingдокументація модулів це дозволяє. Ви навіть можете вибрати, які журнали входять у термінал, а які - у файл, та ще багато цікавих програм. docs.python.org/3/howto/…
Даніель Ернандес

4

ось простіший спосіб зробити це. це рішення не використовує словник конфігурації і використовує обробник файлів обертання, наприклад:

import logging
from logging.handlers import RotatingFileHandler

logging.basicConfig(handlers=[RotatingFileHandler(filename=logpath+filename,
                     mode='w', maxBytes=512000, backupCount=4)], level=debug_level,
                     format='%(levelname)s %(asctime)s %(message)s', 
                    datefmt='%m/%d/%Y%I:%M:%S %p')

logger = logging.getLogger('my_logger')

або так:

import logging
from logging.handlers import RotatingFileHandler

handlers = [
            RotatingFileHandler(filename=logpath+filename, mode='w', maxBytes=512000, 
                                backupCount=4)
           ]
logging.basicConfig(handlers=handlers, level=debug_level, 
                    format='%(levelname)s %(asctime)s %(message)s', 
                    datefmt='%m/%d/%Y%I:%M:%S %p')

logger = logging.getLogger('my_logger')

змінна обробник повинна бути ітерабельною. logpath + ім'я файлу та debug_level - лише змінні, що містять відповідну інформацію. Звичайно, значення параметрів функціональних параметрів залежать від вас.

Перший раз, коли я використовував модуль реєстрації, я помилився, написавши наступне, що генерує помилку блокування файлів ОС (вище рішення - це):

import logging
from logging.handlers import RotatingFileHandler

logging.basicConfig(filename=logpath+filename, level=debug_level, format='%(levelname)s %(asctime)s %(message)s', datefmt='%m/%d/%Y
 %I:%M:%S %p')

logger = logging.getLogger('my_logger')
logger.addHandler(RotatingFileHandler(filename=logpath+filename, mode='w', 
                  maxBytes=512000, backupCount=4))

а Боб твій дядько!


3

http://docs.python.org/library/logging.handlers.html#filehandler

FileHandlerКласу, розташований в базовому loggingпакеті, відправляє висновок журналирования в файл на диску.


3
+1 Для повного прикладу дивіться "основний підручник": docs.python.org/howto/logging.html#logging-to-a-file
Фердинанд Бейер

Мені подобається, як існує кілька різних типів FileHandlers для різних ситуацій. ( WatchedFileHandler, RotatingFileHandlerі т. д.)
JAB

0
import sys
import logging

from util import reducer_logfile
logging.basicConfig(filename=reducer_logfile, format='%(message)s',
                    level=logging.INFO, filemode='w')

0

Цей приклад повинен добре працювати. Я додав streamhandler для консолі. Дані обробника журналу та файлів консолі повинні бути подібними.

    # MUTHUKUMAR_TIME_DATE.py #>>>>>>>> file name(module)

    import sys
    import logging
    import logging.config
    # ================== Logger ================================
    def Logger(file_name):
        formatter = logging.Formatter(fmt='%(asctime)s %(module)s,line: %(lineno)d %(levelname)8s | %(message)s',
                                      datefmt='%Y/%m/%d %H:%M:%S') # %I:%M:%S %p AM|PM format
        logging.basicConfig(filename = '%s.log' %(file_name),format= '%(asctime)s %(module)s,line: %(lineno)d %(levelname)8s | %(message)s',
                                      datefmt='%Y/%m/%d %H:%M:%S', filemode = 'w', level = logging.INFO)
        log_obj = logging.getLogger()
        log_obj.setLevel(logging.DEBUG)
        # log_obj = logging.getLogger().addHandler(logging.StreamHandler())

        # console printer
        screen_handler = logging.StreamHandler(stream=sys.stdout) #stream=sys.stdout is similar to normal print
        screen_handler.setFormatter(formatter)
        logging.getLogger().addHandler(screen_handler)

        log_obj.info("Logger object created successfully..")
        return log_obj
    # =======================================================


MUTHUKUMAR_LOGGING_CHECK.py #>>>>>>>>>>> file name
# calling **Logger** function
file_name = 'muthu'
log_obj =Logger(file_name)
log_obj.info("yes   hfghghg ghgfh".format())
log_obj.critical("CRIC".format())
log_obj.error("ERR".format())
log_obj.warning("WARN".format())
log_obj.debug("debug".format())
log_obj.info("qwerty".format())
log_obj.info("asdfghjkl".format())
log_obj.info("zxcvbnm".format())
# closing file
log_obj.handlers.clear()

OUTPUT:
2019/07/13 23:54:40 MUTHUKUMAR_TIME_DATE,line: 17     INFO | Logger object created successfully..
2019/07/13 23:54:40 MUTHUKUMAR_LOGGING_CHECK,line: 8     INFO | yes   hfghghg ghgfh
2019/07/13 23:54:40 MUTHUKUMAR_LOGGING_CHECK,line: 9 CRITICAL | CRIC
2019/07/13 23:54:40 MUTHUKUMAR_LOGGING_CHECK,line: 10    ERROR | ERR
2019/07/13 23:54:40 MUTHUKUMAR_LOGGING_CHECK,line: 11  WARNING | WARN
2019/07/13 23:54:40 MUTHUKUMAR_LOGGING_CHECK,line: 12    DEBUG | debug
2019/07/13 23:54:40 MUTHUKUMAR_LOGGING_CHECK,line: 13     INFO | qwerty
2019/07/13 23:54:40 MUTHUKUMAR_LOGGING_CHECK,line: 14     INFO | asdfghjkl
2019/07/13 23:54:40 MUTHUKUMAR_LOGGING_CHECK,line: 15     INFO | zxcvbnm

Thanks, 

0

Формат Опис

#%(name)s       Name of the logger (logging channel).
#%(levelname)s  Text logging level for the message ('DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL').
#%(asctime)s    Human-readable time when the LogRecord was created. By default this is of the form ``2003-07-08 16:49:45,896'' (the numbers after the comma are millisecond portion of the time).
#%(message)s    The logged message. 

Нормальний спосіб дзвінка

import logging
#logging.basicConfig(level=logging.INFO)
logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger(__name__)
logger.info('Start reading database')
# read database here
records = {'john': 55, 'tom': 66}
logger.debug('Records: %s', records)
logger.info('Updating records ...')
# update records here
logger.info('Finish updating records')

Вихідні дані

INFO:__main__:Start reading database
DEBUG:__main__:Records: {'john': 55, 'tom': 66}
INFO:__main__:Updating records ...
INFO:__main__:Finish updating records

Використовуючи значення Dict, Call

import logging
import logging.config
import otherMod2

def main():
    """
    Based on http://docs.python.org/howto/logging.html#configuring-logging
    """
    dictLogConfig = {
        "version":1,
        "handlers":{
                    "fileHandler":{
                        "class":"logging.FileHandler",
                        "formatter":"myFormatter",
                        "filename":"config2.log"
                        }
                    },        
        "loggers":{
            "exampleApp":{
                "handlers":["fileHandler"],
                "level":"INFO",
                }
            },

        "formatters":{
            "myFormatter":{
                "format":"%(asctime)s - %(name)s - %(levelname)s - %(message)s"
                }
            }
        }

    logging.config.dictConfig(dictLogConfig)

    logger = logging.getLogger("exampleApp")

    logger.info("Program started")
    result = otherMod2.add(7, 8)
    logger.info("Done!")

if __name__ == "__main__":
    main()

otherMod2.py

import logging
def add(x, y):
    """"""
    logger = logging.getLogger("exampleApp.otherMod2.add")
    logger.info("added %s and %s to get %s" % (x, y, x+y))
    return x+y

Вихідні дані

2019-08-12 18:03:50,026 - exampleApp - INFO - Program started
2019-08-12 18:03:50,026 - exampleApp.otherMod2.add - INFO - added 7 and 8 to get 15
2019-08-12 18:03:50,027 - exampleApp - INFO - Done!
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.