trace_set_at¶
- 
lsst.utils.logging.trace_set_at(name: str, number: int) → None¶
- Adjust logging level to display messages with the trace number being less than or equal to the provided value. - Parameters: - Notes - Loggers - TRACE0.to- TRACE5.are set. All loggers above the specified threshold are set to- INFOand those below the threshold are set to- DEBUG. The expectation is that- TRACEloggers only issue- DEBUGlog messages.- If - lsst.logis installed, this function will also call- lsst.log.utils.traceSetAtto ensure that non-Python loggers are also configured correctly.- Examples - lsst.utils.logging.trace_set_at("lsst.afw", 3) - This will set loggers - TRACE0.lsst.afwto- TRACE3.lsst.afwto- DEBUGand- TRACE4.lsst.afwand- TRACE5.lsst.afwto- INFO.