Remove stray logs

This commit is contained in:
Oliver-Akins 2025-06-04 21:20:54 -06:00
parent 4b11d12f81
commit 00d63d42d1

View file

@ -275,10 +275,6 @@ export class Database {
* @returns {boolean} * @returns {boolean}
*/ */
static requiresMigrationFrom(lastVersion) { static requiresMigrationFrom(lastVersion) {
Logger.table({
lastVersion,
newer: isNewerVersion(__VERSION__, lastVersion),
});
return isNewerVersion(__VERSION__, lastVersion); return isNewerVersion(__VERSION__, lastVersion);
}; };
@ -295,7 +291,6 @@ export class Database {
*/ */
static async migrateData(lastVersion, notif) { static async migrateData(lastVersion, notif) {
const totalSteps = 1; const totalSteps = 1;
Logger.debug(lastVersion);
/* /*
This migration is for going up to 1.0.3, getting rid of any tables that have This migration is for going up to 1.0.3, getting rid of any tables that have