mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 18:04:48 +00:00
binman: Reduce state.SetInt and bintool cmd to debug level
These are not very important message. Change them to use the 'debug' level instead of 'detail'. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
23b96e920b
commit
24142ead21
2 changed files with 3 additions and 3 deletions
|
@ -288,7 +288,7 @@ class Bintool:
|
|||
name = os.path.expanduser(self.name) # Expand paths containing ~
|
||||
all_args = (name,) + args
|
||||
env = tools.get_env_with_path()
|
||||
tout.detail(f"bintool: {' '.join(all_args)}")
|
||||
tout.debug(f"bintool: {' '.join(all_args)}")
|
||||
result = command.run_pipe(
|
||||
[all_args], capture=True, capture_stderr=True, env=env,
|
||||
raise_on_error=False, binary=binary)
|
||||
|
|
|
@ -385,8 +385,8 @@ def SetInt(node, prop, value, for_repack=False):
|
|||
for_repack: True is this property is only needed for repacking
|
||||
"""
|
||||
for n in GetUpdateNodes(node, for_repack):
|
||||
tout.detail("File %s: Update node '%s' prop '%s' to %#x" %
|
||||
(n.GetFdt().name, n.path, prop, value))
|
||||
tout.debug("File %s: Update node '%s' prop '%s' to %#x" %
|
||||
(n.GetFdt().name, n.path, prop, value))
|
||||
n.SetInt(prop, value)
|
||||
|
||||
def CheckAddHashProp(node):
|
||||
|
|
Loading…
Add table
Reference in a new issue