summaryrefslogtreecommitdiff
path: root/classes/db/migrations.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-03-04 09:22:24 +0300
committerAndrew Dolgov <[email protected]>2021-03-04 09:22:24 +0300
commit5eb0f3d640374a82a026164942adc79bb1262576 (patch)
tree1227d76bb1184b4e505ea53ca49ea3252ac9512d /classes/db/migrations.php
parente19570f422df8e4ba0d604b517efad111def9a23 (diff)
bring back web dbupdate using new migrations system
Diffstat (limited to 'classes/db/migrations.php')
-rw-r--r--classes/db/migrations.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/db/migrations.php b/classes/db/migrations.php
index e77904f60..e5133ddf6 100644
--- a/classes/db/migrations.php
+++ b/classes/db/migrations.php
@@ -89,7 +89,7 @@ class Db_Migrations {
try {
$this->pdo->query($line);
} catch (PDOException $e) {
- Debug::log("Failed on line: $line");
+ Debug::log("Failed on line: $line", Debug::LOG_VERBOSE);
throw $e;
}
}