Skip to main content

An simple, async, full package name path, log rotating, different colored log library.

Project description

Aelog

An simple, async, full package name path, log rotating, different colored log library.

aelog aims to make using python log as simple as possible. as a result, it drastically simplifies using python logging.

aelog's design objectives:

  • Make using python log as simple as possible.
  • Output log contains the full package name path.
  • Provide asynchronous log output function, at the same time, contains common log output.
  • Output according to the log level to mark the different colors separately.
  • Provide a log file rotating, automatic backup.
  • Output to the terminal and file, default output to the terminal, if you don't provide the log file path.

Installing aelog

  • pip install aelog

Usage

simple using, not initialized.

import aelog

def test_aelog_output_console():
    """

    Args:

    Returns:

    """
    aelog.debug("simple debug message")
    aelog.info("simple info message")
    aelog.warning("simple warning message")
    aelog.error("simple error message")
    aelog.critical("simple critical message")
    try:
        5 / 0
    except Exception as e:
        aelog.exception(e)

This will output to the terminal.
console

  • Different levels of logging, different color, the color is cyan, green, yellow, red and 'bold_red,bg_white' in turn.

To initialize, output log to file and terminal.

import aelog

aelog.init_aelog("test.log", True)  # Output to the test.log file and terminal 

def test_aelog_output_file():
    """

    Args:

    Returns:

    """
    aelog.debug("simple debug message")
    aelog.info("simple info message")
    aelog.warning("simple warning message")
    aelog.error("simple error message")
    aelog.critical("simple critical message")
    try:
        5 / 0
    except Exception as e:
        aelog.exception(e)

This will output to the test.log file and terminal. console

  • Automatic output is greater than the error information to the 'test_error.log' file.
  • Different levels of logging, different color, the color is cyan, green, yellow, red and 'bold_red,bg_white' in turn.

To initialize, asynchronous output log to file and terminal.

import asyncio
import aelog

aelog.init_aelog("test.log", True)  # Output to the test.log file and terminal 

async def test_async_output():
    await aelog.async_debug("simple debug message")
    await aelog.async_info("simple info message")
    await aelog.async_warning("simple warning message")
    await aelog.async_error("simple error message")
    await aelog.async_critical("simple critical message")
    try:
        5 / 0
    except Exception as e:
        await aelog.async_exception(e)

if "__name__"=="__main__":
    loop = asyncio.get_event_loop()
    loop.run_until_complete(test_async_output())

This will output to the test.log file and terminal. console

  • Automatic output is greater than the error information to the 'test_error.log' file.
  • Different levels of logging, different color, the color is cyan, green, yellow, red and 'bold_red,bg_white' in turn.

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

aelog-1.0.1.tar.gz (5.2 kB view hashes)

Uploaded Source

Built Distribution

aelog-1.0.1-py3-none-any.whl (7.0 kB view hashes)

Uploaded Python 3

Supported by

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