Author: jalkanen
Date: Thu Mar 12 22:12:07 2009
New Revision: 753037
URL: http://svn.apache.org/viewvc?rev=753037&view=rev
Log:
Switched to use debug() instead of info() when locating ActionBeans (not useful
to the general admin)
Modified:
incubator/jspwiki/trunk/src/java/org/apache/wiki/action/WikiContextFactory.java
Modified:
incubator/jspwiki/trunk/src/java/org/apache/wiki/action/WikiContextFactory.java
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/java/org/apache/wiki/action/WikiContextFactory.java?rev=753037&r1=753036&r2=753037&view=diff
==============================================================================
---
incubator/jspwiki/trunk/src/java/org/apache/wiki/action/WikiContextFactory.java
(original)
+++
incubator/jspwiki/trunk/src/java/org/apache/wiki/action/WikiContextFactory.java
Thu Mar 12 22:12:07 2009
@@ -437,8 +437,8 @@
else
{
m_contextMap.put( requestContext, handler );
- log.info( "Discovered request context '" + requestContext
+ "' for WikiActionBean="
- + beanClass.getCanonicalName() + ",event=" +
handler.getEventName() );
+ log.debug( "Discovered request context '" + requestContext
+ "' for WikiActionBean="
+ + beanClass.getCanonicalName() + ",event=" +
handler.getEventName() );
}
}
}