Title: [211015] trunk/Tools
Revision
211015
Author
[email protected]
Date
2017-01-21 02:21:33 -0800 (Sat, 21 Jan 2017)

Log Message

Unreviewed. Bring back gtk-doc error messages after r209981.

Since r209981, if gtk-doc shows warnings the build fails but those warnings are not printed to stdout so it's
impossible to know what's wrong.

* gtk/gtkdoc.py:
(GTKDoc._run_command): Make print_output True by default again and use debug instead of info to log "Running" messages.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (211014 => 211015)


--- trunk/Tools/ChangeLog	2017-01-21 09:22:39 UTC (rev 211014)
+++ trunk/Tools/ChangeLog	2017-01-21 10:21:33 UTC (rev 211015)
@@ -1,3 +1,13 @@
+2017-01-21  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Bring back gtk-doc error messages after r209981.
+
+        Since r209981, if gtk-doc shows warnings the build fails but those warnings are not printed to stdout so it's
+        impossible to know what's wrong.
+
+        * gtk/gtkdoc.py:
+        (GTKDoc._run_command): Make print_output True by default again and use debug instead of info to log "Running" messages.
+
 2017-01-20  Youenn Fablet  <[email protected]>
 
         [WebRTC] Update build system to make G711 optional in libwebrtc

Modified: trunk/Tools/gtk/gtkdoc.py (211014 => 211015)


--- trunk/Tools/gtk/gtkdoc.py	2017-01-21 09:22:39 UTC (rev 211014)
+++ trunk/Tools/gtk/gtkdoc.py	2017-01-21 10:21:33 UTC (rev 211015)
@@ -182,9 +182,9 @@
             answer = raw_input(question).lower()
         return answer == 'y'
 
-    def _run_command(self, args, env=None, cwd=None, print_output=False, ignore_warnings=False):
+    def _run_command(self, args, env=None, cwd=None, print_output=True, ignore_warnings=False):
         if print_output:
-            self.logger.info("Running %s", args[0])
+            self.logger.debug("Running %s", args[0])
         self.logger.debug("Full command args: %s", str(args))
 
         process = subprocess.Popen(args, env=env, cwd=cwd,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to