Metadata-Version: 2.1
Name: logger-color
Version: 0.0.6
Summary: Different logging levels for stram (terminal) and file. Color the log messages. Has additional levels for diagnostics: DIAG_INFO, DIAG_WARNING.
Home-page: https://github.com/vladimirs-git/logger
Author: Vladimir Prusakov
Author-email: vladimir.prusakovs@gmail.com
License: MIT
Download-URL: https://github.com/vladimirs-git/logger/archive/refs/tags/0.0.6.tar.gz
Keywords: logging
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Natural Language :: English
Requires-Python: >=3.8
Description-Content-Type: text/x-rst
License-File: LICENSE.txt


.. image:: https://img.shields.io/pypi/v/logger-color.svg
   :target: https://pypi.python.org/pypi/logger-color
.. image:: https://img.shields.io/pypi/pyversions/logger-color.svg
   :target: https://pypi.python.org/pypi/logger-color

logger-color
============

Different logging levels for stram (terminal) and file. Color the log messages.
Has additional levels for diagnostics: DIAG_INFO, DIAG_WARNING.

============== ===== ===========
Level          Int   Color
============== ===== ===========
DEBUG          10    gray
INFO           20    green
WARNING        30    yellow
ERROR          40    red
CRITICAL       50    bold red
DIAG_INFO      21    blue
DIAG_WARNING   31    blue bold
============== ===== ===========


.. contents:: **Contents**
	:local:


Requirements
------------

Python >=3.8


Installation
------------

Install the package from pypi.org release

.. code:: bash

    pip install logger-color

or install the package from github.com repository

.. code:: bash

    pip install git+https://github.com/vladimirs-git/logger-color

or install the package from github.com release

.. code:: bash

    pip install https://github.com/vladimirs-git/logger-color/archive/refs/tags/0.0.6.tar.gz


start_logging()
---------------
**start_logging(filename, mode, level, level_file, color, debug)** - Start logging
with the specified parameters


Parameters
----------

=========== ======= ======= ============================================================================================
Parameter   Type    Default Description
=========== ======= ======= ============================================================================================
filename    *str*           Writes messages to this file. By default, logging only to the terminal
mode        *str*   "w"     "w" - Writes to file (default), "a" - Appends to file
level       *str*   INFO    Logging level for the terminal: "DEBUG", "INFO" (default), "WARNING", "ERROR", "CRITICAL", "DIAG_INFO", "DIAG_WARNING"
level_file  *str*   level   Logging level for the file. By default, the same as `level` parameter
color       *bool*  True    True  - Prints a colored message to the terminal (default), False - Prints a monochrome message to the terminal
debug       *bool*  False   True  - Sets logging level to DEBUG (rewrites `level` parameter), works the same as level="DEBUG". False - Gets logging level from `level` parameter (default)
=========== ======= ======= ============================================================================================


debug()
-------
**debug(args, kwargs)** - Log a message with severity "DEBUG"


diag_info()
-----------
**diag_info(msg, args, kwargs)** - Log diagnostic message with severity "INFO"


diag_warning()
--------------
**diag_warning(msg, args, kwargs)** - Log diagnostic message with severity "WARNING"


info()
------
**info(args, kwargs)** - Log a message with severity "INFO"


warning()
---------
**warning(args, kwargs)** - Log a message with severity "WARNING"


error()
-------
**error(args, kwargs)** - Log a message with severity "ERROR"


critical()
----------
**warning(args, kwargs)** - Log a message with severity "CRITICAL"


**Example**

.. code:: python

	import logger_color

	logger_color.start_logging(filename="/var/log/test.log", level="debug", level_file="error")
	logger_color.debug("debug")
	logger_color.info("info")
	logger_color.warning("warning")
	logger_color.error("error")
	logger_color.critical("critical")
	logger_color.diag_info("diag_info")
	logger_color.diag_warning("diag_warning")
	# 2000-12-31 23:59:59.474 DEBUG    messages.debug: debug
	# 2000-12-31 23:59:59.474 INFO     messages.info: info
	# 2000-12-31 23:59:59.474 WARNING  messages.warning: warning
	# 2000-12-31 23:59:59.474 ERROR    messages.error: error
	# 2000-12-31 23:59:59.474 CRITICAL messages.critical: critical
	# 2000-12-31 23:59:59.474 DIAG_I   messages.<module>: diag_info
	# 2000-12-31 23:59:59.474 DIAG_W   messages.<module>: diag_warning

	# cat /var/log/test.log
	# 2000-12-31 23:59:59 ERROR    error
	# 2000-12-31 23:59:59 CRITICAL critical


