From ce969f7bb4729c10dd496e4730a4ae616643b1f6 Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Sun, 2 Nov 2008 03:27:11 +0000 Subject: [PATCH] Include errors in what we print out without -v Change the debug topics in the non-verbose case from just JS LOG to JS LOG and JS ERROR. svn path=/trunk/; revision=21 --- scripts/launcher.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/launcher.py b/scripts/launcher.py index a52e37291..a45fc5f9b 100644 --- a/scripts/launcher.py +++ b/scripts/launcher.py @@ -66,9 +66,9 @@ class Launcher: env['LIBGL_ALWAYS_INDIRECT'] = '1' if not self.options.verbose: - # Unless verbose() is specified, only let gjs log things that are explicit log() - # commands form javascript - env['GJS_DEBUG_TOPICS'] = 'JS LOG' + # Unless verbose() is specified, only let gjs show errors and things that are + # explicitly logged via log() from javascript + env['GJS_DEBUG_TOPICS'] = 'JS ERROR;JS LOG' if self.options.debug: args = list(self.debug_command)