From 11f2877b5c1d3971b7ff9f68fc562b222428762b Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Sun, 3 Jan 2010 22:00:41 -0500 Subject: [PATCH] Default to being quiet instead of generating output (this should probably be done with a Logger anyway) --- framework/Db/lib/Horde/Db/Migration/Base.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/Db/lib/Horde/Db/Migration/Base.php b/framework/Db/lib/Horde/Db/Migration/Base.php index f1260b9ef..dfc4cc574 100644 --- a/framework/Db/lib/Horde/Db/Migration/Base.php +++ b/framework/Db/lib/Horde/Db/Migration/Base.php @@ -27,7 +27,7 @@ class Horde_Db_Migration_Base * Print messages as migrations happen * @var boolean */ - public $verbose = true; + public $verbose = false; /** * The migration version @@ -48,7 +48,7 @@ class Horde_Db_Migration_Base /** */ - public function __construct(Horde_Db_Adapter_Base $connection, $version = null, $verbose = true) + public function __construct(Horde_Db_Adapter_Base $connection, $version = null, $verbose = false) { $this->_connection = $connection; $this->version = $version; -- 2.11.0