1 # The following logging mechanisms are to be used in bash functions of recipes.
2 # They are intended to map one to one in intention and output format with the
3 # python recipe logging functions of a similar naming convention: bb.plain(),
4 # bb.note(), etc.
5
6 LOGFIFO = "${T}/fifo.${@os.getpid()}"
7
8 # Print the output exactly as it is passed in. Typically used for output of
9 # tasks that should be seen on the console. Use sparingly.
10 # Output: logs console
11 bbplain() {
12 +-- 6 lines: if [ -p ${LOGFIFO} ] ; then-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
18
19 # Notify the user of a noteworthy condition.
20 # Output: logs
21 bbnote() {
22 +-- 7 lines: if [ -p ${LOGFIFO} ] ; then-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
29 # Print a warning to the log. Warnings are non-fatal, and do not
30 # indicate a build failure.
31 # Output: logs console
32 bbwarn() {
33 +-- 7 lines: if [ -p ${LOGFIFO} ] ; then-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
40 # Print an error to the log. Errors are non-fatal in that the build can
41 # continue, but they do indicate a build failure.
42 # Output: logs console
43 bberror() {
44 +-- 6 lines: if [ -p ${LOGFIFO} ] ; then-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
50
51 # Print a fatal error to the log. Fatal errors indicate build failure
52 # and halt the build, exiting with an error code.
53 # Output: logs console
54 bbfatal() {
55 +-- 7 lines: if [ -p ${LOGFIFO} ] ; then-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
62
63 # Like bbfatal, except prevents the suppression of the error log by
64 # bitbake's UI.
65 # Output: logs console
66 bbfatal_log() {
67 +-- 7 lines: if [ -p ${LOGFIFO} ] ; then-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
74
75 # Print debug messages. These are appropriate for progress checkpoint
76 # messages to the logs. Depending on the debug log level, they may also
77 # go to the console.
78 # Output: logs console
79 # Usage: bbdebug 1 "first level debug message"
80 # bbdebug 2 "second level debug message"
81 bbdebug() {
82 +-- 19 lines: USAGE='Usage: bbdebug [123] "message"'--------------------------------------------------------------------------------------------------------------------------------------------------------------
101
base.bbclass 詳細分析 —— logging.bbclass
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
- 文/潘曉璐 我一進店門锈遥,熙熙樓的掌柜王于貴愁眉苦臉地迎上來纫事,“玉大人,你說我怎么就攤上這事所灸±龌蹋” “怎么了?”我有些...
- 文/不壞的土叔 我叫張陵爬立,是天一觀的道長钾唬。 經(jīng)常有香客問我,道長懦尝,這世上最難降的妖魔是什么知纷? 我笑而不...
- 正文 為了忘掉前任,我火速辦了婚禮陵霉,結果婚禮上琅轧,老公的妹妹穿的比我還像新娘。我一直安慰自己踊挠,他們只是感情好乍桂,可當我...
- 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著效床,像睡著了一般睹酌。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上剩檀,一...
- 文/蒼蘭香墨 我猛地睜開眼悯舟,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了砸民?” 一聲冷哼從身側響起抵怎,我...
- 正文 年R本政府宣布嵌莉,位于F島的核電站进萄,受9級特大地震影響,放射性物質發(fā)生泄漏锐峭。R本人自食惡果不足惜中鼠,卻給世界環(huán)境...
- 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望沿癞。 院中可真熱鬧援雇,春花似錦、人聲如沸椎扬。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽蚕涤。三九已至筐赔,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間揖铜,已是汗流浹背茴丰。 一陣腳步聲響...
推薦閱讀更多精彩內(nèi)容
- 1 設置 NATIVELSBSTRING ORIGNATIVELSBSTRING BB_VERSION 2 hos...
- Handle backfilling Handle PACKAGECONFIG 用到的方法 根據(jù)PACKAGECO...
- task chain 構建 base.class patch.bbclass staging.bbclass ut...