Logentries Handler to get Token from environment variable.
Project description
About
The Logentries Python Handler does not provide a way to get TOKEN from a environment variable. This is a simple project that gives you the ability to have Logentries Token read from a Environment variable.
Install
To install this library, use the following command:
pip install logentries-envs
Usage
Considering the following code on file cool_log.py
#!/usr/bin/env python
import logging
from leenvs import LogentriesHandler
log = logging.getLogger('logentries')
log.setLevel(logging.INFO)
test = LogentriesHandler()
log.addHandler(test)
log.warn("Warning message")
log.info("Info message")
sleep(10)
Now, just set the envvar and you are good to go.
$ export LOGENTRIES_TOKEN="1234-1234-1234-1234"
$ python cool_log.py
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
logentries-envs-0.0.5.tar.gz
(1.7 kB
view hashes)