पायथन लॉगिंग के लिए समय प्रारूप को कैसे अनुकूलित करें?


200

मैं पायथन के लॉगिंग पैकेज के लिए नया हूं और अपनी परियोजना के लिए इसका उपयोग करने की योजना बना रहा हूं। मैं अपने स्वाद के लिए समय प्रारूप को अनुकूलित करना चाहूंगा। यहाँ एक छोटा कोड है जिसे मैंने एक ट्यूटोरियल से कॉपी किया है:

import logging

# create logger
logger = logging.getLogger("logging_tryout2")
logger.setLevel(logging.DEBUG)

# create console handler and set level to debug
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)

# create formatter
formatter = logging.Formatter("%(asctime)s;%(levelname)s;%(message)s")

# add formatter to ch
ch.setFormatter(formatter)

# add ch to logger
logger.addHandler(ch)

# "application" code
logger.debug("debug message")
logger.info("info message")
logger.warn("warn message")
logger.error("error message")
logger.critical("critical message")

और यहाँ उत्पादन है:

2010-07-10 10:46:28,811;DEBUG;debug message
2010-07-10 10:46:28,812;INFO;info message
2010-07-10 10:46:28,812;WARNING;warn message
2010-07-10 10:46:28,812;ERROR;error message
2010-07-10 10:46:28,813;CRITICAL;critical message

मैं 2010-07-10 10:46:28माइली-सेकंड प्रत्यय को छोड़ते हुए समय प्रारूप को सिर्फ: ' ' तक छोटा करना चाहूंगा । मैंने Formatter.formatTime को देखा, लेकिन भ्रमित था। मैं अपने लक्ष्य को प्राप्त करने के लिए आपकी मदद की सराहना करता हूं। धन्यवाद।

जवाबों:


224

फ़ॉर्मेटर वर्ग के बारे में आधिकारिक दस्तावेज से :

कंस्ट्रक्टर दो वैकल्पिक तर्क देता है: एक संदेश प्रारूप स्ट्रिंग और एक दिनांक प्रारूप स्ट्रिंग।

इसलिए बदलो

# create formatter
formatter = logging.Formatter("%(asctime)s;%(levelname)s;%(message)s")

सेवा

# create formatter
formatter = logging.Formatter("%(asctime)s;%(levelname)s;%(message)s",
                              "%Y-%m-%d %H:%M:%S")

24
ध्यान दें कि यदि आप लॉगिंग को कॉन्फ़िगर करने की तानाशाही विधि का उपयोग कर रहे हैं (जैसे कि यदि आप Django का उपयोग कर रहे हैं), तो आप फॉर्मेटेटर के लिए 'datefmt' तानाशाह कुंजी का उपयोग करके इसे सेट कर सकते हैं। देखें: Django लॉगिंग कॉन्फ़िगरेशन , लॉगिंग मॉड्यूल: डिक्शनरी स्कीमा विवरण
कहानी

8
इसके अलावा, अगर आपका कॉन्फिगिंग बेसिककोन्फिग के साथ हो रहा है, तो यह एक नामित पैरामीटर लेता है, जिसे डेटफेमट कहा जाता है
ब्रूनो लोप्स

10
1.9 में, यदि आप एक लॉगजीआई सेटिंग का उपयोग कर रहे हैं, तो आप इस तरह 'डेटफ़्म्ट' प्रविष्टि शामिल कर सकते हैं ...'formatters': { 'default': { 'format': '%(asctime)s | %(levelname)s | %(module)s | %(message)s', 'datefmt': '%Y-%m-%d %H:%M', },
jcfollower

समय क्षेत्र क्या होगा?
Luv33preet

@ Luv33preet ने अपने '% z'
13

138

का उपयोग करते हुए logging.basicConfig, निम्नलिखित उदाहरण मेरे लिए काम करता है:

logging.basicConfig(
    filename='HISTORYlistener.log',
    level=logging.DEBUG,
    format='%(asctime)s.%(msecs)03d %(levelname)s %(module)s - %(funcName)s: %(message)s',
    datefmt='%Y-%m-%d %H:%M:%S',
)

इससे आप सभी को एक पंक्ति में प्रारूपित और कॉन्फ़िगर कर सकते हैं। एक परिणामी लॉग रिकॉर्ड निम्नानुसार दिखता है:

2014-05-26 12:22:52.376 CRITICAL historylistener - main: History log failed to start

4
मैंने msecs फ़ील्ड के लिए शून्य-गद्देदार स्वरूपण जोड़ा है। अन्यथा, msecs मान 100 से कम गलत तरीके से दिखाई देते हैं।
अजीब

2
उस ने कहा, ओपी नहीं चाहता कि मिसेज़ बिल्कुल दिखाई दें!
अजीब

31

अगर logging.config.fileConfig का उपयोग कॉन्फ़िगरेशन फ़ाइल के साथ किया जाता है, तो कुछ इस तरह का उपयोग करें:

[formatter_simpleFormatter]
format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
datefmt=%Y-%m-%d %H:%M:%S

29

अन्य उत्तरों में जोड़ने के लिए, यहां पाइथन डॉक्यूमेंटेशन की परिवर्तनशील सूची दी गई है।

Directive   Meaning Notes

%a  Locales abbreviated weekday name.   
%A  Locales full weekday name.  
%b  Locales abbreviated month name.     
%B  Locales full month name.    
%c  Locales appropriate date and time representation.   
%d  Day of the month as a decimal number [01,31].    
%H  Hour (24-hour clock) as a decimal number [00,23].    
%I  Hour (12-hour clock) as a decimal number [01,12].    
%j  Day of the year as a decimal number [001,366].   
%m  Month as a decimal number [01,12].   
%M  Minute as a decimal number [00,59].  
%p  Locales equivalent of either AM or PM. (1)
%S  Second as a decimal number [00,61]. (2)
%U  Week number of the year (Sunday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Sunday are considered to be in week 0.    (3)
%w  Weekday as a decimal number [0(Sunday),6].   
%W  Week number of the year (Monday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Monday are considered to be in week 0.    (3)
%x  Locales appropriate date representation.    
%X  Locales appropriate time representation.    
%y  Year without century as a decimal number [00,99].    
%Y  Year with century as a decimal number.   
%z  Time zone offset indicating a positive or negative time difference from UTC/GMT of the form +HHMM or -HHMM, where H represents decimal hour digits and M represents decimal minute digits [-23:59, +23:59].  
%Z  Time zone name (no characters if no time zone exists).   
%%  A literal '%' character.     
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.