Skip to content

FrostyTheSouthernSnowman/logging4thelazy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Logs4theLazy

Easily add logs to your python projects!
View Demo · Report Bug · Request Feature

Table of Contents
  1. Overview
  2. Getting Started
  3. Usage
  4. Roadmap
  5. Contributing
  6. License
  7. Contact

Overview

Logs4theLazy allows you easily add detailed, descriptive, and well-structured logs to your project.

Logs4theLazy allows you to

  • Define custom logging patterns
  • Or you could just use a prebuilt one
  • You can define the structure of your logs with LogFormats
  • You can control where logs go through loggers

(back to top)

Getting Started

To install logs4thelazy, it is recommended to create a virtual environment and just use pip.

>>> python -m venv venv

>>> source venv/bin/activate

>>> pip install l4l

for Mac and Linux

or on Windows

>>> python -m venv venv

>>> source venv\Scripts\Activate.ps1

>>> pip install l4l

Usage

To start using logs4thelazy, you must first have it installed. After you install logs4thelazy, you must import it

import l4l

With logs4thelazy imported, you can use the basic default loggers

# l4l_example.py
import l4l

logger = l4l.BaseLogger(name="logger")

logger.log(l4l.from_value("Hello logging4thelazy world!"), stdout=True)

and then if you run it

>>> python l4l_example.py
logger: List of all logs logged by logger, logger
logger: Hello logging4thelazy world!

(back to top)

Roadmap

  • Create basic working logger
  • Create some extra logger classes that do things such as log to a file, log to a database, format the log, log with a trace-back, etc.
  • Add some documentation

See the open issues for a full list of proposed features (and known issues).

(back to top)

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make logs4thelazy better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)

License

Distributed under the MIT License. See LICENSE for more information.

(back to top)

Contact

Yosi Frost - yosi_frost@icloud.com

Project Link: https://github.com/FrostyTheSouthernSnowman/logging4thelazy

(back to top)