fstab50 / xlines

Counts number of lines of code in a project (python3 implementation)
GNU General Public License v3.0
1 stars 1 forks source link

Logging #21

Open fstab50 opened 5 years ago

fstab50 commented 5 years ago

increase state and event visibility with increased logging

Implement at strategic points.

fstab50 commented 5 years ago

to implement centralised log object instantiation using libtools package, exception trapping will be needed when installing from pypi.python.org registry. (this may not work either way):

__init__():

try:

    from xlines import __version__
    from libtools import logd
    from xlines.statics import local_config

    logd.local_config = local_config
    logger = logd.getLogger(__version__)

except Exception:
    pass