Index: topia/src/java/org/codelutin/topia/persistence/serialization/SerializablePersistenceHelper.java diff -u topia/src/java/org/codelutin/topia/persistence/serialization/SerializablePersistenceHelper.java:1.5 topia/src/java/org/codelutin/topia/persistence/serialization/SerializablePersistenceHelper.java:1.6 --- topia/src/java/org/codelutin/topia/persistence/serialization/SerializablePersistenceHelper.java:1.5 Tue Jun 21 17:00:43 2005 +++ topia/src/java/org/codelutin/topia/persistence/serialization/SerializablePersistenceHelper.java Thu Jun 23 14:03:37 2005 @@ -24,7 +24,7 @@ * Created: 10 juin 2005 * * @author Arnaud Thimel -* @version $Revision: 1.5 $ +* @version $Revision: 1.6 $ */ @@ -71,13 +71,13 @@ public void destroy() { File dbFile = getPersistenceFile(); - log.info("Using file : " + dbFile.getAbsolutePath()); + log.fine("Using file : " + dbFile.getAbsolutePath()); ObjectOutputStream output; try { output = new ObjectOutputStream(new FileOutputStream(dbFile)); output.writeObject(entities); output.close(); - log.info(entities.size() + " entite(s) saved to file..."); + log.fine(entities.size() + " entity(ies) saved to file..."); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { @@ -118,7 +118,7 @@ } if (entities == null) entities = new HashMap(); - log.info(entities.size() + " entite(s) loaded from file..."); + log.info(entities.size() + " entite(s) loaded from file : " + dbFile.getAbsolutePath()); } public TopiaEntity create(Class entityClass) throws TopiaException {