Krinkle has uploaded a new change for review. https://gerrit.wikimedia.org/r/59609
Change subject: ExtraSettings.php: Some debugging for MediaWiki installs in Jenkins ...................................................................... ExtraSettings.php: Some debugging for MediaWiki installs in Jenkins Change-Id: Idbfe2155dc74fdf3071874f294bd07a53f60427d --- M jobs/_shared/ExtraSettings.php 1 file changed, 6 insertions(+), 2 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/integration/jenkins refs/changes/09/59609/1 diff --git a/jobs/_shared/ExtraSettings.php b/jobs/_shared/ExtraSettings.php index 702470c..0c04dc0 100644 --- a/jobs/_shared/ExtraSettings.php +++ b/jobs/_shared/ExtraSettings.php @@ -1,5 +1,9 @@ <?php -$wgDevelopmentWarnings = true; # bug 38882 +// Debugging: PHP +error_reporting( -1 ); +ini_set( 'display_errors', 1 ); -$wgShowExceptionDetails = true; # bug 43059 +// Debugging: MediaWiki +$wgDevelopmentWarnings = true; +$wgShowExceptionDetails = true; -- To view, visit https://gerrit.wikimedia.org/r/59609 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Idbfe2155dc74fdf3071874f294bd07a53f60427d Gerrit-PatchSet: 1 Gerrit-Project: integration/jenkins Gerrit-Branch: master Gerrit-Owner: Krinkle <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
