Revision: 257
http://sourceforge.net/p/beeframework/code/257
Author: m_plomer
Date: 2014-10-15 00:20:24 +0000 (Wed, 15 Oct 2014)
Log Message:
-----------
- tuned logging levels in Bee\MVC\Dispatcher
Modified Paths:
--------------
trunk/framework/Bee/MVC/Dispatcher.php
Modified: trunk/framework/Bee/MVC/Dispatcher.php
===================================================================
--- trunk/framework/Bee/MVC/Dispatcher.php 2014-10-14 20:48:38 UTC (rev 256)
+++ trunk/framework/Bee/MVC/Dispatcher.php 2014-10-15 00:20:24 UTC (rev 257)
@@ -211,7 +211,7 @@
try {
$this->requestBuilder = $this->context->getBean(self::REQUEST_BUILDER_BEAN_NAME, '\Bee\MVC\IRequestBuilder');
} catch (NoSuchBeanDefinitionException $ex) {
- $this->getLog()->info('no RequestBuilder configured, using DefaultRequestBuilder');
+ $this->getLog()->debug('no RequestBuilder configured, using DefaultRequestBuilder');
$this->requestBuilder = new DefaultRequestBuilder();
}
@@ -223,13 +223,13 @@
try {
$this->filterChainProxy = $this->context->getBean(self::FILTER_CHAIN_PROXY_NAME, 'Bee\MVC\IFilter');
} catch (NoSuchBeanDefinitionException $ex) {
- $this->getLog()->info('no filter chain proxy configured');
+ $this->getLog()->debug('no filter chain proxy configured');
}
try {
$this->handlerExceptionResolver = $this->context->getBean(self::HANDLER_EXCEPTION_RESOLVER_NAME, 'Bee\MVC\IHandlerExceptionResolver');
} catch (NoSuchBeanDefinitionException $ex) {
- $this->getLog()->info('no exception resolver configured');
+ $this->getLog()->debug('no exception resolver configured');
}
}
@@ -304,7 +304,7 @@
}
} catch (Exception $e) {
- $this->getLog()->warn('handler or interceptor exception caught, trying to resolve appropriate error view', $e);
+ $this->getLog()->info('handler or interceptor exception caught, trying to resolve appropriate error view', $e);
// @todo: handle exceptions caused by handlers properly (i.e. as application level exceptions)
if ($this->handlerExceptionResolver) {
$mav = $this->handlerExceptionResolver->resolveException($request, $handler, $e);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|