summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-08-24 12:28:27 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-08-25 18:14:53 +0100
commit4c94d36022727fa5b640b73b3f2bc82a58443a33 (patch)
tree58e5367bdc2a8c1dbf89789705d6f7b7aced0831 /bitbake/lib
parentb221b8a657888be605f6c31e6353b10b08a619e6 (diff)
downloadpoky-4c94d36022727fa5b640b73b3f2bc82a58443a33.tar.gz
bitbake: build/msg: Cleanup verbose option handling
The levels of indirection to set these verbose logging options is rather crazy. This attempts to turn things into two specific options with much more specific meanings. For now its all still controlled by the commandline verbose option and should funciton as previously, with the addition that the BB_VERBOSE_LOGS option can now be task specific. (Bitbake rev: 423c046f2173aaff3072dc3d0882d01b8a0b0212) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/build.py7
-rw-r--r--bitbake/lib/bb/cooker.py5
-rw-r--r--bitbake/lib/bb/cookerdata.py7
-rw-r--r--bitbake/lib/bb/msg.py6
-rw-r--r--bitbake/lib/bb/runqueue.py4
5 files changed, 13 insertions, 16 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index 94f9cb371c..974d2ff065 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -29,6 +29,9 @@ from bb import data, event, utils
29bblogger = logging.getLogger('BitBake') 29bblogger = logging.getLogger('BitBake')
30logger = logging.getLogger('BitBake.Build') 30logger = logging.getLogger('BitBake.Build')
31 31
32verboseShellLogging = False
33verboseStdoutLogging = False
34
32__mtime_cache = {} 35__mtime_cache = {}
33 36
34def cached_mtime_noerror(f): 37def cached_mtime_noerror(f):
@@ -413,7 +416,7 @@ def exec_func_shell(func, d, runfile, cwd=None):
413 416
414 bb.data.emit_func(func, script, d) 417 bb.data.emit_func(func, script, d)
415 418
416 if bb.msg.loggerVerboseLogs: 419 if verboseShellLogging or bb.utils.to_boolean(d.getVar("BB_VERBOSE_LOGS", False)):
417 script.write("set -x\n") 420 script.write("set -x\n")
418 if cwd: 421 if cwd:
419 script.write("cd '%s'\n" % cwd) 422 script.write("cd '%s'\n" % cwd)
@@ -433,7 +436,7 @@ exit $ret
433 if fakerootcmd: 436 if fakerootcmd:
434 cmd = [fakerootcmd, runfile] 437 cmd = [fakerootcmd, runfile]
435 438
436 if bb.msg.loggerDefaultVerbose: 439 if verboseStdoutLogging:
437 logfile = LogTee(logger, StdoutNoopContextManager()) 440 logfile = LogTee(logger, StdoutNoopContextManager())
438 else: 441 else:
439 logfile = StdoutNoopContextManager() 442 logfile = StdoutNoopContextManager()
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 33452e7b93..57caf38c2a 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -413,11 +413,6 @@ class BBCooker:
413 self.data.disableTracking() 413 self.data.disableTracking()
414 414
415 def parseConfiguration(self): 415 def parseConfiguration(self):
416 # Set log file verbosity
417 verboselogs = bb.utils.to_boolean(self.data.getVar("BB_VERBOSE_LOGS", False))
418 if verboselogs:
419 bb.msg.loggerVerboseLogs = True
420
421 # Change nice level if we're asked to 416 # Change nice level if we're asked to
422 nice = self.data.getVar("BB_NICE_LEVEL") 417 nice = self.data.getVar("BB_NICE_LEVEL")
423 if nice: 418 if nice:
diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py
index b86e7d446b..6bf411bcd2 100644
--- a/bitbake/lib/bb/cookerdata.py
+++ b/bitbake/lib/bb/cookerdata.py
@@ -58,11 +58,14 @@ class ConfigParameters(object):
58 def updateToServer(self, server, environment): 58 def updateToServer(self, server, environment):
59 options = {} 59 options = {}
60 for o in ["abort", "force", "invalidate_stamp", 60 for o in ["abort", "force", "invalidate_stamp",
61 "verbose", "debug", "dry_run", "dump_signatures", 61 "debug", "dry_run", "dump_signatures",
62 "debug_domains", "extra_assume_provided", "profile", 62 "debug_domains", "extra_assume_provided", "profile",
63 "prefile", "postfile", "server_timeout"]: 63 "prefile", "postfile", "server_timeout"]:
64 options[o] = getattr(self.options, o) 64 options[o] = getattr(self.options, o)
65 65
66 options['build_verbose_shell'] = self.options.verbose
67 options['build_verbose_stdout'] = self.options.verbose
68
66 ret, error = server.runCommand(["updateConfig", options, environment, sys.argv]) 69 ret, error = server.runCommand(["updateConfig", options, environment, sys.argv])
67 if error: 70 if error:
68 raise Exception("Unable to update the server configuration with local parameters: %s" % error) 71 raise Exception("Unable to update the server configuration with local parameters: %s" % error)
@@ -125,6 +128,8 @@ class CookerConfiguration(object):
125 self.skipsetscene = False 128 self.skipsetscene = False
126 self.invalidate_stamp = False 129 self.invalidate_stamp = False
127 self.dump_signatures = [] 130 self.dump_signatures = []
131 self.build_verbose_shell = False
132 self.build_verbose_stdout = False
128 self.dry_run = False 133 self.dry_run = False
129 self.tracking = False 134 self.tracking = False
130 self.xmlrpcinterface = [] 135 self.xmlrpcinterface = []
diff --git a/bitbake/lib/bb/msg.py b/bitbake/lib/bb/msg.py
index 2d88c4e72d..1b1a23bb50 100644
--- a/bitbake/lib/bb/msg.py
+++ b/bitbake/lib/bb/msg.py
@@ -146,18 +146,12 @@ class LogFilterLTLevel(logging.Filter):
146# 146#
147 147
148loggerDefaultLogLevel = BBLogFormatter.NOTE 148loggerDefaultLogLevel = BBLogFormatter.NOTE
149loggerDefaultVerbose = False
150loggerVerboseLogs = False
151loggerDefaultDomains = {} 149loggerDefaultDomains = {}
152 150
153def init_msgconfig(verbose, debug, debug_domains=None): 151def init_msgconfig(verbose, debug, debug_domains=None):
154 """ 152 """
155 Set default verbosity and debug levels config the logger 153 Set default verbosity and debug levels config the logger
156 """ 154 """
157 bb.msg.loggerDefaultVerbose = verbose
158 if verbose:
159 bb.msg.loggerVerboseLogs = True
160
161 if debug: 155 if debug:
162 bb.msg.loggerDefaultLogLevel = BBLogFormatter.DEBUG - debug + 1 156 bb.msg.loggerDefaultLogLevel = BBLogFormatter.DEBUG - debug + 1
163 elif verbose: 157 elif verbose:
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 02a261e30c..6370ce50a1 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1263,8 +1263,8 @@ class RunQueue:
1263 "fakerootnoenv" : self.rqdata.dataCaches[mc].fakerootnoenv, 1263 "fakerootnoenv" : self.rqdata.dataCaches[mc].fakerootnoenv,
1264 "sigdata" : bb.parse.siggen.get_taskdata(), 1264 "sigdata" : bb.parse.siggen.get_taskdata(),
1265 "logdefaultlevel" : bb.msg.loggerDefaultLogLevel, 1265 "logdefaultlevel" : bb.msg.loggerDefaultLogLevel,
1266 "logdefaultverbose" : bb.msg.loggerDefaultVerbose, 1266 "build_verbose_shell" : self.cooker.configuration.build_verbose_shell,
1267 "logdefaultverboselogs" : bb.msg.loggerVerboseLogs, 1267 "build_verbose_stdout" : self.cooker.configuration.build_verbose_stdout,
1268 "logdefaultdomain" : bb.msg.loggerDefaultDomains, 1268 "logdefaultdomain" : bb.msg.loggerDefaultDomains,
1269 "prhost" : self.cooker.prhost, 1269 "prhost" : self.cooker.prhost,
1270 "buildname" : self.cfgData.getVar("BUILDNAME"), 1270 "buildname" : self.cfgData.getVar("BUILDNAME"),