Index: trunk/phase3/includes/db/CloneDatabase.php |
— | — | @@ -99,12 +99,12 @@ |
100 | 100 | |
101 | 101 | if( $this->dropCurrentTables && !in_array( $this->db->getType(), array( 'postgres' ) ) ) { |
102 | 102 | $this->db->dropTable( $tbl, __METHOD__ ); |
103 | | - wfDebug( "Dropping {$this->newTablePrefix}{$oldTableName}\n", __METHOD__ ); |
| 103 | + wfDebug( __METHOD__." dropping {$this->newTablePrefix}{$oldTableName}\n", true); |
104 | 104 | //Dropping the oldTable because the prefix was changed |
105 | 105 | } |
106 | 106 | |
107 | 107 | # Create new table |
108 | | - wfDebug( "Duplicating $oldTableName to $newTableName\n", __METHOD__ ); |
| 108 | + wfDebug( __METHOD__." duplicating $oldTableName to $newTableName\n", true ); |
109 | 109 | $this->db->duplicateTableStructure( $oldTableName, $newTableName, $this->useTemporaryTables ); |
110 | 110 | |
111 | 111 | } |