Index: topia/src/java/org/codelutin/topia/TopiaContext.java diff -u topia/src/java/org/codelutin/topia/TopiaContext.java:1.35 topia/src/java/org/codelutin/topia/TopiaContext.java:1.36 --- topia/src/java/org/codelutin/topia/TopiaContext.java:1.35 Fri May 20 17:51:10 2005 +++ topia/src/java/org/codelutin/topia/TopiaContext.java Wed Jun 15 15:14:54 2005 @@ -23,9 +23,9 @@ * * @author Benjamin Poussin * Copyright Code Lutin - * @version $Revision: 1.35 $ + * @version $Revision: 1.36 $ * - * Mise a jour: $Date: 2005/05/20 17:51:10 $ + * Mise a jour: $Date: 2005/06/15 15:14:54 $ * par : $Author: thimel $ */ @@ -402,7 +402,7 @@ permissions.put(multiKey.add(key), propValues); } } catch (FileNotFoundException e) { - System.out.println("Fichier : \"" + fileName + "\" inexistant..."); + //Aucune permission n'est chargée puisque le fichier n'existe pas... } catch (IOException e) { e.printStackTrace(); } Index: topia/src/java/org/codelutin/topia/TopiaContextFactory.java diff -u topia/src/java/org/codelutin/topia/TopiaContextFactory.java:1.5 topia/src/java/org/codelutin/topia/TopiaContextFactory.java:1.6 --- topia/src/java/org/codelutin/topia/TopiaContextFactory.java:1.5 Sat Feb 5 10:47:09 2005 +++ topia/src/java/org/codelutin/topia/TopiaContextFactory.java Wed Jun 15 15:14:54 2005 @@ -23,10 +23,10 @@ * * @author Benjamin Poussin * Copyright Code Lutin - * @version $Revision: 1.5 $ + * @version $Revision: 1.6 $ * - * Mise a jour: $Date: 2005/02/05 10:47:09 $ - * par : $Author: pineau $ + * Mise a jour: $Date: 2005/06/15 15:14:54 $ + * par : $Author: thimel $ */ package org.codelutin.topia; @@ -136,7 +136,7 @@ String contextClassName = properties.getProperty( TopiaConst.CONTEXT_CLASS, "org.codelutin.topia.TopiaContext"); Logger.getLogger(TopiaContextFactory.class + ".createContext").log( - Level.INFO, "Class used for context is " + contextClassName); + Level.FINEST, "Class used for context is " + contextClassName); try { contextClass = Class.forName(contextClassName); Constructor constructor = contextClass @@ -158,7 +158,7 @@ try { URL propURL = Resource.getURL(propertiesFilename); Logger.getLogger(TopiaContext.class + ".getDefaultProperties").log( - Level.INFO, + Level.FINEST, "Properties file used for context is: " + propURL); properties.load(propURL.openStream()); } catch (Exception eee) {