Update of /var/cvs/src/org/mmbase/cache
In directory james.mmbase.org:/tmp/cvs-serv29769

Modified Files:
        CacheManager.java 
Log Message:
throw any other exceptions too


See also: http://cvs.mmbase.org/viewcvs/src/org/mmbase/cache


Index: CacheManager.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/cache/CacheManager.java,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -b -r1.31 -r1.32
--- CacheManager.java   18 Jul 2008 09:53:34 -0000      1.31
+++ CacheManager.java   24 Jul 2008 11:56:05 -0000      1.32
@@ -27,7 +27,7 @@
  * Cache manager manages the static methods of [EMAIL PROTECTED] Cache}. If 
you prefer you can call them on this in stead.
  *
  * @since MMBase-1.8
- * @version $Id: CacheManager.java,v 1.31 2008/07/18 09:53:34 michiel Exp $
+ * @version $Id: CacheManager.java,v 1.32 2008/07/24 11:56:05 michiel Exp $
  */
 public abstract class CacheManager {
 
@@ -106,6 +106,8 @@
                 mbs.registerMBean(cache, name);
             } catch (JMException jmo) {
                 log.warn("" + name + " " + jmo.getClass() + " " + 
jmo.getMessage());
+            } catch (Throwable t) {
+                log.error("" + name + " " + t.getClass() + " " + 
t.getMessage());
             }
         }
         return old;
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to