- Author:
- amitu
- Posted:
- March 20, 2009
- Language:
- Python
- Version:
- 1.0
- Tags:
- debugging logging
- Score:
- 0 (after 0 ratings)
Lets you easily create loggers.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # logging # {{{
def create_logger(name=None):
if name is None:
name = settings.SETTINGS_FILE_FOLDER.namebase
logger = logging.getLogger(name)
hdlr = logging.FileHandler(
settings.SETTINGS_FILE_FOLDER.joinpath("%s.log" % name)
)
formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s')
hdlr.setFormatter(formatter)
logger.addHandler(hdlr)
logger.setLevel(logging.INFO)
return logger
logger = create_logger()
cron_logger = create_logger("cron")
paypal_logger = create_logger("paypal")
# }}}
# put the following in settings.py # {{{
import path
SETTINGS_FILE_FOLDER = path.path(__file__).parent
# }}}
|
More like this
- Serialize a model instance by chriswedgwood 1 week, 1 day ago
- Automatically setup raw_id_fields ForeignKey & OneToOneField by agusmakmun 9 months, 1 week ago
- Crispy Form by sourabhsinha396 10 months ago
- ReadOnlySelect by mkoistinen 10 months, 2 weeks ago
- Verify events sent to your webhook endpoints by santos22 11 months, 2 weeks ago
Comments
i would also added log level as a second argument.
#
Please login first before commenting.