Default to being quiet instead of generating output (this should probably be done...
authorChuck Hagenbuch <chuck@horde.org>
Mon, 4 Jan 2010 03:00:41 +0000 (22:00 -0500)
committerChuck Hagenbuch <chuck@horde.org>
Thu, 7 Jan 2010 03:19:54 +0000 (22:19 -0500)
framework/Db/lib/Horde/Db/Migration/Base.php

index f1260b9..dfc4cc5 100644 (file)
@@ -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;