This repository has been archived by the owner on Jun 27, 2019. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
According to https://docs.python.org/2/library/logging.html#module-level-functions, the logging instantiation in tools/run-fbp-runner is incorrect: root = logging.getLogger() hdlr = root.handlers[0] fmt = logging.Formatter('%(message)s') hdlr.setFormatter(fmt) hdlr.setLevel(level) before invoke getLogger(), python script should call basicConfig() to ensure that at least one handler is available. Signed-off-by: Lei Yang <lei.a.yang@intel.com>
- Loading branch information