[elbe-devel] [PATCH v2 07/28] Add logging to stdout for command buildsdk

dion at linutronix.de dion at linutronix.de
Fri Jun 21 19:39:59 CEST 2019


From: Olivier Dion <dion at linutronix.de>

Signed-off-by: Olivier Dion <dion at linutronix.de>
---
 elbepack/commands/buildsdk.py | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/elbepack/commands/buildsdk.py b/elbepack/commands/buildsdk.py
index 5b4debfc..d52ccb95 100644
--- a/elbepack/commands/buildsdk.py
+++ b/elbepack/commands/buildsdk.py
@@ -10,6 +10,7 @@ import sys
 
 from elbepack.elbeproject import ElbeProject
 from elbepack.elbexml import ValidationError
+from elbepack.log import elbe_logging
 
 
 def run_command(argv):
@@ -28,12 +29,13 @@ def run_command(argv):
         oparser.print_help()
         sys.exit(20)
 
-    try:
-        project = ElbeProject(args[0], override_buildtype=opt.buildtype,
-                              skip_validate=opt.skip_validation)
-    except ValidationError as e:
-        print(str(e))
-        print("xml validation failed. Bailing out")
-        sys.exit(20)
+    with elbe_logging(stdout=True):
+        try:
+            project = ElbeProject(args[0], override_buildtype=opt.buildtype,
+                                  skip_validate=opt.skip_validation)
+        except ValidationError as e:
+            print(str(e))
+            print("xml validation failed. Bailing out")
+            sys.exit(20)
 
-    project.build_sdk()
+        project.build_sdk()
-- 
2.11.0




More information about the elbe-devel mailing list