Skip to main content

Collaborative, beautiful logging system for distributed developers

Project description

LogMachine Python Logger

PyPI version License: MIT

Collaborative, beautiful logging system for distributed developers

It is an improvement over the standard Python logging module, with a focus on team-based logging, centralization and better log formatting. It is designed to be easy to use, with a simple interface that allows developers to log messages in a structured and consistent way.

logmachine helps teams log smarter. All from a standard Python logging interface.


Features

  • Color-coded terminal logs (DEBUG, INFO, WARNING, ERROR, SUCCESS, etc)
  • Log forwarding to a central server
  • Custom log levels (add your own with .new_level(...))
  • Custom log formatting via log_format and datefmt
  • User identity tracking for team-based logs
  • Pluggable backends: send logs to a central server or local files
  • Simple JSON output for web dashboards or collectors
  • Strips ANSI escape codes from logs for clean parsing
  • Automatically resolves usernames and session tokens in ~/.logmachine

Installation

pip install logmachine

Usage

Basic Setup

from logmachine import LogMachine

# Create a simple logger without central logging
# Providing a non-empty string initializes the logger with that name, else the root logger is used to collect every single log in the python process.
logger = LogMachine("myapp", level=1)

logger.info("Hello, world!")
logger.error("An error occurred!")
logger.success("Operation completed successfully!")
logger.debug("Debugging information here.")
logger.warning("This is a warning message.")

Custom Log Formatting

from logmachine import LogMachine

logger = LogMachine(
    "myapp",
    level=1,
    log_format="({username} @ {module}) [ {timestamp} ] {level} {message}",
    datefmt="%Y-%m-%d %H:%M:%S"
)

logger.info("Hello with a custom format!")

The log_format string supports:

  • {username}
  • {timestamp}
  • {level}
  • {message}
  • {color}
  • {reset}
  • Plus all other values in a LogRecord like pathname, filename, lineno, module, funcName, etc. (See Python Logging LogRecord)

With Central Logging

You can use the default logger with central logging pointing to "https://logmachine.org"

from logmachine import default_logger
logger = default_logger()
logger.info("This log is sent to the LogMachine default central server!")

This is the default central logging server for logmachine, and you can create your own room there for free. To use your own central logging server, provide the configuration as shown below:

logger_config = {
    "url": "https://logmachine.org",  # Base server URL
    "room": "team_alpha",             # Your organization or room. This is optional and defaults to your username
    "endpoint": "/api/socket.io/",    # Optional. Defaults to /api/socket.io/ for Socket.IO transport.
    "api_key": "your_api_key",        # Optional. This is for the best authentication experience
    "headers": {"Authorization": "Bearer token"}, # Optional. The central server should know your username based on the token you provide here.
}
logger = LogMachine("with_central", level=0, central=logger_config)
logger.success("Central logging is working!")

Browser Login for Central Logging

If your central server supports LogMachine auth endpoints, you can open a browser login flow directly from the SDK. The provider selection (Google/GitHub) happens in the browser UI.

from logmachine import LogMachine

logger = LogMachine("with_central", central={
    "url": "https://logmachine.org",
    "room": "team_alpha",
})
# LogMachine opens a browser session, then waits for you to log in.

logger.info("Now logging as an authenticated user")

What LogMachine does:

  • Opens your browser to the central auth page or uses your API KEY if provided
  • Waits for user to complete authentication (if using browser login)
  • Stores the authentication, and continues to logging

Non-Interactive Server Login using an API Key (Recommended)

For headless environments, generate an API key from your LogMachine profile page and put it in your env or pass it directly into the config. This allows you to authenticate without any browser interaction while still associating logs with your user identity.

from logmachine import LogMachine

logger = LogMachine("with_central", central={
    "url": "https://logmachine.org",
    "room": "team_alpha",
    "api_key": "your_api_key_here"
})

logger.info("Authenticated without browser interaction")

We recommend setting the LM_API_KEY environment variable instead of passing api_key directly.


Log Format

Every log includes:

  • Username (resolved automatically or via server)
  • Module directory
  • Timestamp
  • Level (INFO, ERROR, etc.)
  • Message

Sample (terminal):

(you @ your_app) 🤌 CL Timing: [ 2025-08-04T11:23:52 ]
[ INFO ] Server started on port 8000
🏁
Image

Advanced

Add Your Own Log Level

logger.new_level("CRITICAL_HACK", 60)
logger.new_level("CRITICAL_HACK", 60, ansi_color="\033[38;5;13m")  # Optional color... does your girlfriend love pink? Maybe you should be in a relationship with your terminal.
logger.critical_hack("Zero day found!")

Parse & Export

Convert Logs to JSON

This is useful for sending logs to web dashboards or log collectors that expect JSON. It reads the your log files, parses the log entries, and outputs them as JSON objects.

json_logs = logger.jsonifier()
for entry in json_logs:
    print(entry)
    # Or even send them to a web dashboard or log collector!

📡 Central Server Compatibility

For central logging, your server should expose an endpoint for Socket.IO transport like:

  • /api/socket.io/ (for Socket.IO transport, expects auth token in connection handshake and processes logs accordingly)

To use Socket.IO transport, your central server must support this event:

  • log: Receives log payloads: { room: string, data: object }

Security

  • HTTP headers (e.g. Authorization) can be injected
  • Central log transmission is fully customizable

Configuration Summary

Param Type Description
url str Central server base URL
room str Logical group or org name
endpoint str Socket.IO endpoint path for central transport (default: /api/socket.io/)
log_format str Custom message template for log output
datefmt str Timestamp format for log messages (default: %Y-%m-%dT%H:%M:%S)
api_key str API key for non-interactive auth (optional)
headers dict Extra headers to send (e.g. auth token)

License

MIT License


Author

Buffer Punk Log Machine GitHub


❤️ Contribute

PRs and issues are welcome! This tool is built for devs who want beautiful logs with distributed brains. Let’s make debugging fun again.

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

logmachine-2.6.1.tar.gz (12.9 kB view details)

Uploaded Source

Built Distribution

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

logmachine-2.6.1-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file logmachine-2.6.1.tar.gz.

File metadata

  • Download URL: logmachine-2.6.1.tar.gz
  • Upload date:
  • Size: 12.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for logmachine-2.6.1.tar.gz
Algorithm Hash digest
SHA256 49568eea65adb8650fd7d1790bfba973a2347eb7a9cd36a7bd7659a01eb4867e
MD5 c018c87daae1ddb7d873e88668cc7ce8
BLAKE2b-256 f96d5767c221c586e22943f85430aa5323e4ad63cafd79a42d56935e95ea8aec

See more details on using hashes here.

File details

Details for the file logmachine-2.6.1-py3-none-any.whl.

File metadata

  • Download URL: logmachine-2.6.1-py3-none-any.whl
  • Upload date:
  • Size: 10.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for logmachine-2.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 19e9236edcdc18cdd4d0e7bd99c42f4d17944ecc6dc8bf028b0db9d190fda0ec
MD5 c11035050f598ec48e720dd060e9119d
BLAKE2b-256 3961845b94e21aee2b3927d41c2c3bd0f05989e150a8543f0a4617b13e45b562

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