[Concept,25/32] patman: Use notice() for database migration messages

Message ID 20260226200106.1727176-26-sjg@u-boot.org
State New
Headers
Series patman: Add multi-upstream support |

Commit Message

Simon Glass Feb. 26, 2026, 8 p.m. UTC
  From: Simon Glass <simon.glass@canonical.com>

Use tout.notice() instead of tout.info() so that migration messages
are visible at the default verbosity level.

Signed-off-by: Simon Glass <simon.glass@canonical.com>
---

 tools/patman/database.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/tools/patman/database.py b/tools/patman/database.py
index dcd39ea2c69..a5952c6d2b6 100644
--- a/tools/patman/database.py
+++ b/tools/patman/database.py
@@ -214,7 +214,7 @@  class Database:  # pylint:disable=R0904
                              tools.read_file(self.db_path))
 
             version += 1
-            tout.info(f'Update database to v{version}')
+            tout.notice(f'Update database to v{version}')
             self.open_it()
             if version == 1:
                 self.create_v1()