Metadata-Version: 2.1
Name: alex_tech_logging_library
Version: 0.1.4
Summary: A custom logging library built on Python's standard logging module. It provides a simple way to set up a logger with file and console handlers.
Home-page: 
Author: Tapan Bhatnagar
Author-email: tapan@alexandriatechnology.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Alex Tech Logging Library

A custom logging library built on Python's standard logging module.

## Installation
pip install alex-tech-logging-library

## Usage

```python
from alex_tech_logging_library import setup_logger

# name is the application name and log_file is full path of the log file that exists.
logger = setup_logger(name='my_logger', log_file='app.log')

# Example log messages
logger.info("This is an info message")
logger.warning("This is a warning message")
logger.error("This is an error message")
```
