Metadata-Version: 2.4
Name: lazy-log-formatter
Version: 0.10.7
Summary: A pre-commit script to make log lines lazier
License: MIT
License-File: LICENSE
Keywords: code-quality,f-strings,lazy logging,linting,logging,pre-commit,pylint,W1203
Author: Daniel Marín
Requires-Python: >=3.10
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Utilities
Requires-Dist: black (>=25.11.0,<26.0.0)
Requires-Dist: libcst (>=1.8.6,<2.0.0)
Project-URL: Homepage, https://github.com/dmar1n/lazy-log-formatter
Project-URL: Repository, https://github.com/dmar1n/lazy-log-formatter
Description-Content-Type: text/markdown

# Lazy log formatter

![PyPI - Version](https://img.shields.io/pypi/v/lazy-log-formatter) 
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/lazy-log-formatter)
![PyPI - Downloads](https://img.shields.io/pypi/dm/lazy-log-formatter)
![License](https://img.shields.io/github/license/dmar1n/lazy-log-formatter)
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/dmar1n/lazy-log-formatter/.github%2Fworkflows%2Frelease.yaml)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://pre-commit.com/)

A tool that automatically converts f-strings in Python logging calls into lazy logging calls 
for consistency with Python documentation, improved performance and linting compliance.

See [PyPI page](https://pypi.org/project/lazy-log-formatter/) for more details.
See [Changelog](changelog.md) for release notes.

Example:

```python
# Before (f-string in log call; not recommended)
logger.info(f"On {datetime.now()} temperature in {city} is {temp:.2f}°C.")

# After lazy-log-formatter
logger.info("On %s temperature in %s is %.2f°C.", datetime.now(), city, temp)

# Prints: On 2024-06-01 12:00:00 temperature in Madrid is 21.50°C.
```

## Why this tool?

In Python, the recommended way to [log variable data](https://docs.python.org/3/howto/logging.html#logging-variable-data) is to use format-string placeholders and pass values separately:

```python
import logging
logging.warning('%s before you %s', 'Look', 'leap!')
```

This approach:

- ensures string formatting and interpolation are only performed [if the message is actually emitted](https://stackoverflow.com/questions/34619790/pylint-message-logging-format-interpolation) (e.g. based on the logging level),
- is consistent with Python’s [logging design](https://docs.python.org/3/howto/logging.html#optimization) and [documentation](https://docs.python.org/3/howto/logging.html#logging-variable-data),
- prevents linting alerts (e.g. Pylint’s [W1203](https://pylint.readthedocs.io/en/stable/user_guide/messages/warning/logging-fstring-interpolation.html): `Use %s formatting in logging functions`).

### References

- [Logging should be lazy](https://medium.com/flowe-ita/logging-should-be-lazy-bc6ac9816906)
- [logging-format-interpolation](https://stackoverflow.com/questions/34619790/pylint-message-logging-format-interpolation)
- [Why it matters how you log in Python](https://medium.com/swlh/why-it-matters-how-you-log-in-python-1a1085851205)

### Features

- Scans Python files for f-strings used in logging calls.
- Provides an option to automatically convert f-strings in logging calls to lazy logging calls.
- Can be integrated as a pre-commit hook to enforce logging best practices in codebases.

## Installation

Install from PyPI:

```sh
pip install lazy-log-formatter
```

## Usage

You can either run the tool as a Python module, use it as a pre-commit hook, run the entry point script:

```sh
lazy-log-formatter [OPTIONS] [PATH...]
```

or

```sh
python -m lazy_log.cli [OPTIONS] [PATH...]
```

### Pre-commit integration

Add the following to your `.pre-commit-config.yaml`:

```yaml
- repo: https://github.com/dmar1n/lazy-log-formatter
  rev: 0.10.7
  hooks:
    - id: lazy-log-formatter
      args: ['--fix']
```

## Command-line options

You can run the tool from the command line using the following options:

| Option                   | Description                                               |
| ------------------------ | --------------------------------------------------------- |
| `--fix`                  | Converts f-strings in log calls to lazy logging syntax    |
| `--exclude [PATTERN...]` | Excludes files/directories matching one or more patterns  |
| `PATH [PATH...]`         | One or more paths to scan (defaults to current directory) |


## Examples

Check all Python files in the current directory and subdirectories:

```sh
lazy-log-formatter .
```

Fix all Python files in the current directory and subdirectories:

```sh
lazy-log-formatter . --fix
```

Check all Python files in two directories:

```sh
lazy-log-formatter lazy_log/ tests/
```

Check specific files:

```sh
lazy-log-formatter lazy_log/cli.py tests/data/test.py
```

Exclude specific files or directories:

```sh
lazy-log-formatter tests/data --exclude "*.pyc" "__pycache__/*" 
```

Fix issues in all Python files in a directory:

```sh
lazy-log-formatter mydir --fix
```

## Example transformations

### Simple f-string

```python
# Before
logger.info(f'Hello {name}')

# After
logger.info('Hello %s', name)
```

### Multiple variables

```python
# Before
logger.info(f'Hello {name} {surname}')

# After
logger.info('Hello %s %s', name, surname)
```

### Class-based logging example

```python
import logging
from datetime import datetime

logger = logging.getLogger(__name__)


def log_and_return_datetime():
    now = datetime.now()
    logger.info(f"Current datetime: {now}")
    return now


class DateTimeLogger:
    def log_datetime(self):
        now = datetime.now()
        logger.info(f"Current datetime: {now}")
        return now
```

After running the formatter without `--fix`, the output will be:

```text
F-strings found in '...\tests\data\test.py':
 - F-string in logging call at ...\tests\data\test.py:8: f'Current datetime: {now}'
 - F-string in logging call at ...\tests\data\test.py:18: f'Current datetime: {now}'
```

After running the formatter with `--fix`, the output will be:

```text
F-strings found and fixed in '...\tests\data\test.py'.
```

The transformed code will be:

```python
import logging
from datetime import datetime

logger = logging.getLogger(__name__)


def log_and_return_datetime():
    now = datetime.now()
    logger.info("Current datetime: %s", now)
    return now


class DateTimeLogger:
    def log_datetime(self):
        now = datetime.now()
        logger.info("Current datetime: %s", now)
        return now
```

## Notes

### Code formatting with Black

When transforming code, the tool uses [Black](https://black.readthedocs.io/en/stable/) to reformat the modified files.
If your project already uses Black, the changes produced by this tool will be consistent with Black’s formatting style.

### Detection of log calls

The tool includes logic to detect logging calls based on the assumption that your logger instances follow common naming conventions (e.g., `logger.info(...)`, `log.info(...)`).
If a logger variable does not contain the substring "log" in its name, the tool will ignore it.

### Other logging libraries

Only works with the native Python `logging` module. Other libraries, such as `loguru`, do not support lazy calls.

For `loguru`, see [Lazy evaluation of expensive functions](https://loguru.readthedocs.io/en/stable/overview.html#lazy-evaluation-of-expensive-functions):

```python
logger.opt(lazy=True).debug("If sink level <= DEBUG: {x}", x=lambda: expensive_function(2**64))
```

