Update of /var/cvs/src/org/mmbase/security
In directory james.mmbase.org:/tmp/cvs-serv4338
Modified Files:
MemoryActionRepository.java
Log Message:
lowered a log, and corrected the category
See also: http://cvs.mmbase.org/viewcvs/src/org/mmbase/security
Index: MemoryActionRepository.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/security/MemoryActionRepository.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- MemoryActionRepository.java 21 Jan 2008 17:28:15 -0000 1.7
+++ MemoryActionRepository.java 20 Aug 2008 17:07:17 -0000 1.8
@@ -18,11 +18,11 @@
* this repository on startup.
*
* @author Michiel Meeuwissen
- * @version $Id: MemoryActionRepository.java,v 1.7 2008/01/21 17:28:15 michiel
Exp $
+ * @version $Id: MemoryActionRepository.java,v 1.8 2008/08/20 17:07:17 michiel
Exp $
* @since MMBase-1.9
*/
public class MemoryActionRepository extends ActionRepository {
- private static final Logger log =
Logging.getLoggerInstance(MMBaseCop.class);
+ private static final Logger log =
Logging.getLoggerInstance(MemoryActionRepository.class);
private final Map<String, Map<String, Action>> store = new HashMap<String,
Map<String, Action>>();
@@ -33,7 +33,7 @@
}
public void add(Action a) {
- log.info("Adding " + a + " to " + this);
+ log.debug("Adding " + a + " to " + this);
Map<String, Action> map = store.get(a.getNameSpace());
if (map == null) {
map = new HashMap<String, Action>();
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs