Utility class for indenting log messages
Project description
logindent
Lightweight utility class for structurally indenting log messages.
About
Indenting log messages is a simple way to make log messages more human readable. In particular, indenting can help distinguish messages for high-level tasks from messages for their subtasks. For example, in the following indented log:
Starting task 1
Running step 1
Running step 2
Running step 3
Completed task
Starting a second task
Querying server
Parsing response
Updating database
Completed second task
it is immediately clear where tasks 1 and 2 begin, and which sub-steps belong to each task.
The logindent package provides the lightweight IndentLogger class to help implement this functionality. The class provides routines to track indenting levels and record log messages to standard logging streams. When logging messages, the correct amount of indentation will be prepended to the log message automatically. Users can manage the indentation level using either context blocks, or via managed IndentLogger objects.
Examples
Indented logging using context blocks:
from logindent import IndentLogger
logger = IndentLogger("my-logger")
logger.info("Starting task 1")
with logger.indent():
logger.debug("Running step 1")
logger.debug("Running step 2")
logger.debug("Running step 3")
with logger.indent():
logger.debug("Ran sub-step A")
logger.debug("Ran sub-step B")
logger.info("Completed task 1")
INFO - Starting task 1
DEBUG - Running step 1
DEBUG - Running step 2
DEBUG - Running step 3
DEBUG - Ran sub-step A
DEBUG - Ran sub-step B
INFO - Completed task 1
Indented logging using managed loggers:
logger.info("Starting task 1")
task_logger = logger.indented()
task_logger.debug("Running step 1")
task_logger.debug("Running step 2")
task_logger.debug("Running step 3")
step3_logger = task_logger.indented()
step3_logger.debug("Ran sub-step A")
step3_logger.debug("Ran sub-step B")
logger.info("Completed task 1")
INFO - Starting task 1
DEBUG - Running step 1
DEBUG - Running step 2
DEBUG - Running step 3
DEBUG - Ran sub-step A
DEBUG - Ran sub-step B
INFO - Completed task 1
Customize indent level and string:
logger = IndentLogger('my-logger', indent_level=2, indent_string="..")
logger.info("Starting task 1 in some running process")
with logger.indent():
logger.debug("Running step 1")
logger.debug("Running step 2")
logger.debug("Running step 3")
INFO - ....Starting task 1 in some running process
DEBUG - ......Running step 1
DEBUG - ......Running step 2
DEBUG - ......Running step 3
When to use IndentLogger
The IndentLogger class is best used when you want a lightweight, text-based solution to make logs more human-readable. In particular, IndentLogger works well for both console and file logs. By contrast, other solutions for human-readable logs (such as colorized messages or rich trees) can sometimes render poorly when logged to file.
Finally, if you want logs that are machine readable (rather than human readable), then consider using structured logging instead of IndentLogger.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file logindent-1.0.0.tar.gz.
File metadata
- Download URL: logindent-1.0.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11937cce935f23120f1f5f9b15f446f46b65b8e0064f8584952a25c0264d4eb3
|
|
| MD5 |
2410537736c431c2980b1aecc1e4bf2a
|
|
| BLAKE2b-256 |
5c1f793d864748a7012f62c1b9fdd5fb3d79bc64186dd21acf9a2865d75b3183
|
File details
Details for the file logindent-1.0.0-py3-none-any.whl.
File metadata
- Download URL: logindent-1.0.0-py3-none-any.whl
- Upload date:
- Size: 3.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dbce26e4ee223691a3fcd0b70f0ec0d698f164427943b02b630b17f021f98b0
|
|
| MD5 |
12dc9e78e9f49df4ef07dd0c86bdea14
|
|
| BLAKE2b-256 |
c530801f98e24a76ed2e52a8fcaddb4a104f394ada043f35386156186a1ba65c
|