In the course of migration from fedora qa migration from fedora hosted to pagure , I have found a migrated pagure [https://pagure.io/taskotron/libtaskotron/blob/develop/f/libtaskotron/logger.py] has LOC 98. The line contains a ref to https://fedorahosted.org/koji/ticket/317 but even though the project has been migrated to pagure the ticket can no longer be traced https://pagure.io/koji/issues?status=all
This ticket had assigned some Differential requests: D1134
As a tip, it's good to quote a few lines when reporting a similar issue (because the line numbers get shifted often), like this: lang=python def _set_verbosity_levels(): '''Configure libtaskotron and other important libraries for maximum desired verbosity. The actual verbosity is then adjusted in our handlers. This should be only called when running as the main script.''' log.setLevel(logging.DEBUG) logging.getLogger('resultsdb_api').setLevel(logging.DEBUG) # TODO: set this to INFO once this is resolved: # https://fedorahosted.org/koji/ticket/317 logging.getLogger('koji').setLevel(logging.DEBUG) logging.getLogger('testcloud').setLevel(logging.DEBUG)
lang=python def _set_verbosity_levels(): '''Configure libtaskotron and other important libraries for maximum desired verbosity. The actual verbosity is then adjusted in our handlers. This should be only called when running as the main script.''' log.setLevel(logging.DEBUG) logging.getLogger('resultsdb_api').setLevel(logging.DEBUG) # TODO: set this to INFO once this is resolved: # https://fedorahosted.org/koji/ticket/317 logging.getLogger('koji').setLevel(logging.DEBUG) logging.getLogger('testcloud').setLevel(logging.DEBUG)
Fixed in D1134.