From 6ced693ee79253be21f264dbd28c393022ef9b06 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Mon, 19 Feb 2018 14:17:11 -0800 Subject: [PATCH] tests: Remove verbose logging settings from DevelopmentSettings.php Follows-up fdb7d36903. It seems these make unit tests on Travis CI fail, per T187581. And when we briefly enabled DevelopmentSettings.php in our Jenkins setup, the PHPUnit tests also failed. Remove these from DevelopmentSettings.php to confirm that the tests pass that way. Then, once our own Jenkins setup has switched back to using DevelopmentSettings.php, we can re-consider adding these in a way that is verified by Gerrit/Jenkins before merging. Bug: T187581 Change-Id: Ib81c5909849598bdad02955f6414d68c038742c5 --- includes/DevelopmentSettings.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/includes/DevelopmentSettings.php b/includes/DevelopmentSettings.php index a74353ab6b..96ed56b94d 100644 --- a/includes/DevelopmentSettings.php +++ b/includes/DevelopmentSettings.php @@ -38,11 +38,6 @@ $wgShowExceptionDetails = true; $wgShowSQLErrors = true; $wgDebugRawPage = true; // T49960 -// Enable verbose logging -$wgDebugComments = true; -$wgDebugDumpSql = true; -$wgDebugTimestamps = true; - // Enable log files $logDir = getenv( 'MW_LOG_DIR' ); if ( $logDir ) { -- 2.20.1