Yocto's logging functions (Python, shell)
Yocto provides logging functions in both Python and shell to help you log when debugging. In this article, we will briefly introduce the types of logging functions and the similar but slightly different Python and shell logging functions.Types of logging functionspython: bb.fatal, bb.error, bb.wran, bb.note, bb.plain, bb.debugshell script: bbfatal, bberror, bbwarn, bbnote, bbplain, bbdebugFuncti..