From 300c8e8aea9fbc7fbc92d0a79eb765d6913a62fd Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sun, 24 Apr 2016 04:02:33 -0400 Subject: [PATCH] Leave default log level at 5 during test runs Otherwise if debug output logging is enabled in the prefs nothing is logged. Test output is still controlled by '-d n'. --- test/runtests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtests.sh b/test/runtests.sh index 38ef135e6..84bd94f01 100755 --- a/test/runtests.sh +++ b/test/runtests.sh @@ -14,7 +14,6 @@ function makePath { eval $__assignTo="'$__path'" } -DEBUG=false if [ -z "$FX_EXECUTABLE" ]; then if [ "`uname`" == "Darwin" ]; then FX_EXECUTABLE="/Applications/Firefox.app/Contents/MacOS/firefox" @@ -42,7 +41,8 @@ DONE exit 1 } -DEBUG_LEVEL=0 +DEBUG=false +DEBUG_LEVEL=5 while getopts "bcd:fg:htx:" opt; do case $opt in b)