Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-8357: Changes to move from pex_logging to lsst.log #36

Merged
merged 1 commit into from
Dec 13, 2016

Commits on Dec 13, 2016

  1. Changes to move from pex_logging to lsst.log

    Change the use of the debug<n> macros to instead use a traceLogger
    Replace the existing log objects with lsst.log.Log.getLogger(component)
    Change build dependences to lsst.log
    
    C++ logging uses lsst.log in place of pex logging for trace levels debuggin:
        Trace5 = debug<10>
        Trace4 = debug<8>
        Trace4 = debug<7>
    
    From python, lsst.log.utils.traceSetAt() is used to control trace enabling.
        traceSetAt(n) n=5,4,3 to be equivalent to setting Debug to 10,8,7
        traceSetAt(-1) disables all traces.
    pgee2000 committed Dec 13, 2016
    Configuration menu
    Copy the full SHA
    cc16a3a View commit details
    Browse the repository at this point in the history