From 10aa3a377485fa261ee814db8b5fc359bf564cd8 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 25 Jul 2012 18:45:07 -0700 Subject: [PATCH] [FileBackend] Made copy script use error() for status dump. Change-Id: I68a359e9ac1490683fb650d4c43f9b643e321701 --- maintenance/syncFileBackend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/syncFileBackend.php b/maintenance/syncFileBackend.php index c4ba66e14c..2dcf757194 100644 --- a/maintenance/syncFileBackend.php +++ b/maintenance/syncFileBackend.php @@ -129,7 +129,7 @@ class SyncFileBackend extends Maintenance { if ( $status->isOK() ) { $lastOKPos = max( $lastOKPos, $lastPosInBatch ); } else { - $this->output( print_r( $status->getErrorsArray(), true ) ); + $this->error( print_r( $status->getErrorsArray(), true ) ); break; // no gaps; everything up to $lastPos must be OK } -- 2.20.1