Skip to main content

gllogger

Project description

from gllogger import gL

# First, call it in your main.py file.
gL.getLogger(__name__)
gL.setGlobalLevel(logging.DEBUG)

# You can log into the console.
gL.init("console")

# You can pass logs into a function.
def gL_function(text):
    print(text)
gL.setFunction(gL_function)
gL.init("function")

# You can write logs to files.
import os
gL.setLogDir(os.path.join(os.getcwd(), "log", ))
gL.init("logging")

# Then, use the following function anywhere to log.
gL.debugs("a", 1, True, )
gL.infos()
gL.warns()
gL.errors()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gllogger-0.0.3.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

gllogger-0.0.3-py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page