معرفی شرکت ها


bottle-log-1.0.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Improved logging for Bottle.
ویژگی مقدار
سیستم عامل OS Independent
نام فایل bottle-log-1.0.0
نام bottle-log
نسخه کتابخانه 1.0.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Lars Hansson
ایمیل نویسنده romabysen@gmail.com
آدرس صفحه اصلی https://github.com/romabysen/bottle-log
آدرس اینترنتی https://pypi.org/project/bottle-log/
مجوز New BSD
Improved logging for Bottle. Use === In order to catch exceptions from other plugins the LoggingPlugin should be the first plugin you install to the application. .. code-block:: python import bottle from bottle_log import LoggingPlugin app = bottle.Bottle() app.install(LoggingPlugin(app.config)) @app.get('/test') def test(logger): logger.warning('This is only a test') return {} Configuration ============= The plugin uses the following configuration keys: **logging.level** The logging level. Possible values: `debug`, `info`, `warning`, `error`, `critical`. Defaults to `warning`. **logging.format** The logging format. See the python logging documentation for the format. Defaults to "`[%(asctime)s] %(levelname)s: %(name)s: %(message)s`" **logging.utc** If `True`, the default, time stamps are in UTC. Logging ======= The standard logger, used by the `logger` keyword, prints to stderr by default. Exception logging ================= This plugin also provides an exception logger ('bottle.exception'). By default this logger does nothing, since bottle prints all exceptions to stderr, but it can be useful if you want to log exceptions to somewhere else. For example, logging to Logentries: .. code-block:: python import bottle from logentries import LogentriesHandler from bottle_log import LoggingPlugin app = bottle.Bottle() app.install(LoggingPlugin(app.config)) le_handler = LogentriesHandler('logentries-api-token') logging.getLogger('bottle.exception').addHandler(le_handler)


نحوه نصب


نصب پکیج whl bottle-log-1.0.0:

    pip install bottle-log-1.0.0.whl


نصب پکیج tar.gz bottle-log-1.0.0:

    pip install bottle-log-1.0.0.tar.gz