From e09d992401d461e736083acaac9cee144ccc60be Mon Sep 17 00:00:00 2001 From: Ben Wibking Date: Mon, 16 Dec 2024 12:24:21 -0500 Subject: [PATCH] add log message --- repo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/repo.py b/repo.py index a360814..d5eb18d 100644 --- a/repo.py +++ b/repo.py @@ -101,6 +101,7 @@ def git_update(self): if self.suite.updateGitSubmodules == 1: # update submodules to those specified by the current commit # (--init is required because there may be new submodules since the last checkout) + self.suite.log.log(f"git submodule update in {self.dir}") _, _, rc = test_util.run(f"git submodule update --init") if rc != 0: