Skip to main content

mixins for tornado

Project description

cotimelog, inspired from [ConcurrentLogHandler](https://pypi.python.org/pypi/ConcurrentLogHandler/0.9.1). To be honest, it is almost the same code. Just edit to make the log file rotated by time.

Installation

pip install cotimelog

ConcurrentTimeRotatingFileHandler

This class is a log handler which is a drop-in replacement for the python standard log handler TimedRotatingFileHandler. The TimedRotatingFileHandler will failed to rotate when multiple processes are trying to write into the same file. You will meet this issue when you use uwsgi. This ConcurrentTimeRotatingFileHandler class is mainly developed to fix this issue.

Usage

Using ConcurrentTimeRotatingFileHandler

import time
from logging import getLogger, INFO
from cotimelog import ConcurrentTimeRotatingFileHandler

# Use an absolute path to prevent file rotation trouble.
logfile = os.path.abspath("mylogfile.log")
# Rotate log after reaching 512K, keep 5 old copies.
rotateHandler = ConcurrentTimeRotatingFileHandler(logfile, mode="a", when="S")
log.addHandler(rotateHandler)
log.setLevel(INFO)

log.info("Here is a very exciting log message, just for you")
log.info("Here is one more very exciting log message, just for you")
time.sleep(1)
log.info("This should be in another file")
License

Apache License, Version 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cotimelog-0.1.2.tar.gz (7.3 kB view details)

Uploaded Source

File details

Details for the file cotimelog-0.1.2.tar.gz.

File metadata

  • Download URL: cotimelog-0.1.2.tar.gz
  • Upload date:
  • Size: 7.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for cotimelog-0.1.2.tar.gz
Algorithm Hash digest
SHA256 5b72caa31917099c1c6cec9f3d55c6480545273b8b82f5f54d6ed8327e8f0e22
MD5 c26b1e2fedb71ece308ab38a5832991a
BLAKE2b-256 4fead7f9fd7bfbf24fa57ca97ce02ed49ca64d8a148ae28d2de3d5ae27e78534

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page