Metadata-Version: 2.1
Name: simply-log
Version: 0.2.1
Description-Content-Type: text/markdown

# Text File Generation Module

This Python module provides a simple logging functionality, allowing users to generate text log files.

## Usage

Once installed, you can import the module into your Python script like this:

```python
from log import log_message

log_message("logFile", "error", "this is a test message")
```

### Additional Examples:

1. Logging an informational message:

   ```python
   log_message("logFile", "info", "this is an informational message")
   ```

2. Logging a warning message:

   ```python
   log_message("logFile", "warning", "this is a warning message")
   ```

3. Logging a debug message:

   ```python
   log_message("logFile", "debug", "this is a debug message")
   ```

4. Logging a critical message:

   ```python
   log_message("logFile", "critical", "this is a critical message")
   ```

[Cornelius Vincent @MIT @author ](https://www.linkedin.com/in/corneliusvincent)
