diff --git a/src/main/java/fr/pandacube/util/orm/ORM.java b/src/main/java/fr/pandacube/util/orm/ORM.java index e94f2c5..efbc712 100644 --- a/src/main/java/fr/pandacube/util/orm/ORM.java +++ b/src/main/java/fr/pandacube/util/orm/ORM.java @@ -42,11 +42,11 @@ public final class ORM { if (tables.contains(elemClass)) return; try { tables.add(elemClass); - Log.info("[ORM] Start Init SQL table "+elemClass.getSimpleName()); + Log.debug("[ORM] Start Init SQL table "+elemClass.getSimpleName()); E instance = elemClass.newInstance(); String tableName = instance.tableName(); if (!tableExist(tableName)) createTable(instance); - Log.info("[ORM] End init SQL table "+elemClass.getSimpleName()); + Log.debug("[ORM] End init SQL table "+elemClass.getSimpleName()); } catch (Exception|ExceptionInInitializerError e) { throw new ORMInitTableException(elemClass, e); }