Skip to content

Commit

Permalink
more silent vacuumSqlite failure log
Browse files Browse the repository at this point in the history
  • Loading branch information
Fallen-Breath committed Dec 3, 2024
1 parent b391420 commit 40f0a39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ private void vacuumSqlite() {
try (var conn = this.dataSource.getConnection(); var stmt = conn.prepareStatement("VACUUM")) {
stmt.executeUpdate();
} catch (SQLException sqlException) {
logger.error("vacuumSqlite failed", sqlException);
logger.warn("vacuumSqlite failed: {}", sqlException.toString());
}
}
}

0 comments on commit 40f0a39

Please sign in to comment.