goransh-buh opened a new issue, #68744:
URL: https://github.com/apache/airflow/issues/68744
## Feature Request
### Summary
The project would benefit from structured logging to make it easier to debug
issues in production.
### Motivation
Currently it can be difficult to understand what the application is doing at
runtime without adding print statements. Proper logging would:
- Allow users to control verbosity with log levels (DEBUG, INFO, WARNING,
ERROR)
- Make it easier to integrate with log aggregation systems
- Help diagnose issues in production without code changes
### Proposed Implementation
```python
import logging
log = logging.getLogger(__name__)
def my_function():
log.debug("Starting my_function")
# ...
log.info("my_function completed successfully")
```
### Impact
Low risk change with high value for users running this in production
environments.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]