tfm_build_manager: Run CMake with verbose option while we face issues

Like https://linaro.atlassian.net/browse/TFC-615 (some generated file
intermittently produce errors while compiling), etc.

Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
Change-Id: I51e06ed2fb3d29f13db2fff222db902ba2351c0b
diff --git a/tfm_ci_pylib/tfm_build_manager.py b/tfm_ci_pylib/tfm_build_manager.py
index 1c59d95..bc8bdfd 100644
--- a/tfm_ci_pylib/tfm_build_manager.py
+++ b/tfm_ci_pylib/tfm_build_manager.py
@@ -399,9 +399,8 @@
         # these also need to be substituted
         overwrite_params["extra_params"] = self.map_params(i.extra_params, mapExtraParams) % overwrite_params
 
-        # Print more cmake command details to debug issue in Isolation Level 3
-        if i.isolation_level == "3":
-            overwrite_params["extra_params"] += " -DCMAKE_VERBOSE_MAKEFILE=ON"
+        # Print more cmake command details to debug any issues
+        overwrite_params["extra_params"] += " -DCMAKE_VERBOSE_MAKEFILE=ON"
 
         if i.test_psa_api == "IPC":
             overwrite_params["test_psa_api"] += " -DINCLUDE_PANIC_TESTS=1"