Python Package for le log toolkit
Project description
Tele Log
算法引擎日志相关的toolkit, 是可支持k8s日志收集的 python package。
how to commpile
python setup.py sdist bdist_wheel
how to release
twine upload -r pypi dist/*.whl
how to install
pip install telelog
how to use
# initial, in the main module
import logging
from telelog import get_logger
logger = logging.getLogger()
logger = get_logger(logger)
logger.info("hello main module")
# in othre module
import logging
logger = logging.getLogger(__name__)
logger.info("hello other module")
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.