Skip to content

Commit

Permalink
Change db initialization message to debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
nov1n committed Oct 3, 2024
1 parent c39f041 commit afd4c75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private void initializeDatabase() {
try (Statement stmt = conn.createStatement()) {
stmt.execute(sql);
}
LOG.info("Database initialized at: {}", DB_PATH);
LOG.debug("Database initialized at: {}", DB_PATH);
} catch (SQLException | IOException e) {
LOG.error("Error initializing database", e);
}
Expand Down

0 comments on commit afd4c75

Please sign in to comment.