Skip to main content

A flexible Python logging library supporting console, file, and server logging.

Project description

Log78

Log78 is a flexible Python logging library that supports console, file, and server logging.

Installation

Install Log78 using pip:

pip install log78

Quick Start

Log78 provides two ways to log messages: a simple method for quick logging and a more detailed method using LogEntry objects. Here's how to get started with the simple method:

from log78 import Log78

# Get the Log78 instance - no setup required!
log = Logger78.instance()

# Log a simple message
await log.INFO("Hello, Log78!")

# Log with a summary and custom level
await log.WARN("This is a warning", "Warning Summary", 60)

For more detailed logging, you can use the LogEntry object:

from log78 import LogEntry, BasicInfo

log_entry = LogEntry(basic=BasicInfo(message="Detailed log message", summary="Log Summary"))
await log.INFO(log_entry)

Both methods are ready to use out of the box with default console and file logging.

Advanced Configuration (Optional)

If you need custom logging behavior, you can use the setup method:

from log78 import Logger78. ServerLog78, FileLog78, ConsoleLog78

# Create custom logger instances if needed
server_logger = ServerLog78()
file_logger = FileLog78("custom_logfile")
console_logger = ConsoleLog78()

# Setup custom loggers
log = Logger78.instance()
log.setup(server_logger, file_logger, console_logger)

Properties

  • debug_kind: A set of log debugging keywords used to control which types of logs are recorded.
  • level_file, level_console, level_api: Respectively represent the threshold levels for file logs, console logs, and API logs.
  • debug_entry: Used to set more fine-grained debugging conditions.

Suggested Log Levels

  • DEBUG (10): Detailed debug information, typically used only in development environments
  • INFO (30): General information, can be used to track normal application operations
  • WARN (50): Warning information, indicating potential issues but not affecting main functionality
  • ERROR (60): Errors and serious problems that require immediate attention

Example: Adjusting Log Levels

from log78 import Logger78. LogEntry, BasicInfo

log = Logger78.instance()

# Adjust console log level to 0 to print all logs (for debugging)
log.level_console = 0
# Adjust file log level to 60 to only record more severe warnings and errors
log.level_file = 60

# Using different levels to record logs
log_entry = LogEntry(basic=BasicInfo(message="Debug information"))
await log.DEBUG(log_entry)  # Will only output to console

log_entry.basic.message = "General information"
await log.INFO(log_entry)  # Will output to console, not recorded in file

log_entry.basic.message = "Warning"
await log.WARN(log_entry)  # Will be recorded in both console and file

log_entry.basic.message = "Error"
await log.ERROR(log_entry)  # Will be recorded in console, file, and API

Methods

  • DEBUG, INFO, WARN, ERROR: Record logs of different levels.
  • ERROR(Exception, LogEntry): Records exception error logs.

Using the LogEntry Class

The LogEntry class provides structured information for detailed logging:

from log78 import Logger78. LogEntry, BasicInfo, EventInfo, HttpInfo

log_entry = LogEntry()
log_entry.basic = BasicInfo(
    summary="User login successful",
    log_level_number=30,
    log_level="INFO",
    message="User johndoe successfully logged into the system",
    service_name="AuthService",
    user_id="user123",
    user_name="johndoe"
)

log_entry.event = EventInfo(
    event_category="authentication",
    event_action="login",
    event_outcome="success"
)

log_entry.http = HttpInfo(
    http_request_method="POST",
    http_request_body_content="{\"username\":\"johndoe\",\"password\":\"*****\"}",
    http_response_status_code=200,
    url_original="https://api.example.com/login"
)

# Add custom properties
log_entry.add_property("customField", "customValue")

await log.INFO(log_entry)

Other

For more detailed information, please refer to the project's GitHub repository or the API documentation.

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

log78-2.1.4.tar.gz (16.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

log78-2.1.4-py3-none-any.whl (18.8 kB view details)

Uploaded Python 3

File details

Details for the file log78-2.1.4.tar.gz.

File metadata

  • Download URL: log78-2.1.4.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for log78-2.1.4.tar.gz
Algorithm Hash digest
SHA256 58d203baf0fb57f97f601857f056b6336bba10f1f066f256298045ee6f0035b8
MD5 73a872a12a66b9d3325599f04df9700d
BLAKE2b-256 0e3594d81d7868f7bb7a0074bf73d5c61a9a832fd523ccf671da977fbc500b55

See more details on using hashes here.

File details

Details for the file log78-2.1.4-py3-none-any.whl.

File metadata

  • Download URL: log78-2.1.4-py3-none-any.whl
  • Upload date:
  • Size: 18.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for log78-2.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 30e9de9c1fc8fe5906c38ca054aeb936ed1879ccef3805817f7c1a063321d805
MD5 cf5a38bf9222fa592d6b898a1829e9d1
BLAKE2b-256 5a17fc4e400faca8519fc58cd235b6bf06fb6e71e971e3c8d8cdd222a7af736f

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