summaryrefslogtreecommitdiff
path: root/tools/binman/state.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-07-18 07:24:09 -0600
committerSimon Glass <sjg@chromium.org>2023-07-20 14:10:58 -0600
commit24142ead21ed5e4d2d6f39dd410d91d815ea1ae2 (patch)
treeba4d6afa0017670cc45dbdc0f8ca16257b2045e3 /tools/binman/state.py
parent23b96e920b95428c55c0659ab4e1576c83a4b366 (diff)
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>
Diffstat (limited to 'tools/binman/state.py')
-rw-r--r--tools/binman/state.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/binman/state.py b/tools/binman/state.py
index 3e78cf34300..45bae40c525 100644
--- a/tools/binman/state.py
+++ b/tools/binman/state.py
@@ -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):