From acab4766b1778df142a41c708d977dee15a64466 Mon Sep 17 00:00:00 2001 From: games647 Date: Mon, 19 Sep 2016 15:59:57 +0200 Subject: [PATCH] Remove database migration logging --- .../java/com/github/games647/fastlogin/core/AuthStorage.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/github/games647/fastlogin/core/AuthStorage.java b/core/src/main/java/com/github/games647/fastlogin/core/AuthStorage.java index 5cf73ad5..ab58a74f 100644 --- a/core/src/main/java/com/github/games647/fastlogin/core/AuthStorage.java +++ b/core/src/main/java/com/github/games647/fastlogin/core/AuthStorage.java @@ -95,13 +95,13 @@ public class AuthStorage { createStmt.executeUpdate("ALTER TABLE premium DROP INDEX UUID"); } } catch (SQLException sqlEx) { - core.getLogger().log(Level.FINE, "Error dropping unique uuid index", sqlEx); + //silent - we already migrated } try { createStmt.executeUpdate("CREATE INDEX uuid_idx on premium (UUID)"); } catch (SQLException sqlEx) { - core.getLogger().log(Level.FINE, "Error creating uuid index", sqlEx); + //silent - we already migrated } } finally { closeQuietly(con);