我有一个使用Symfony CMF路由捆绑包1.3的Symfony 2.6应用程序,其中我们使用普通symfony路由和自定义存储的动态路由的组合(除其他外,下面的示例着重于我们的一个动态路由器)。
问题是,当路由器工作正常时,我们无法获得关于路由器无法匹配动态路由的日志。
最常见的条目是:
Router Symfony\Bundle\FrameworkBundle\Routing\Router was not able to match, message ""
我们偶尔会看到
Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was not able to match, message ""
有没有办法禁用这些日志或更改我的动态路由器配置/设置,以便这些错误仅在路由实际失败时出现。
这是我的配置/设置:
# app/config/config.yml
cmf_routing:
chain:
routers_by_id:
router.default: 32
cmf_routing.dynamic_router: 30
dynamic:
enabled: true
route_provider_service_id: store_router
基于
的实际动态路由器// StoreBundle/Router/StoreRouter.php
<?php
/**
* @DI\Service("store_router")
*/
class StoreRouter implements RouteProviderInterface
{
protected $em;
/**
* @DI\InjectParams({
* "em" = @DI\Inject("doctrine.orm.entity_manager")
* })
*/
public function __construct(EntityManager $em)
{
$this->em = $em;
}
/**
* @param Request $request
* @return RouteCollection
*/
public function getRouteCollectionForRequest(Request $request)
{
$collection = new RouteCollection();
$store = $this->em->getRepository('StoreBundle:Store')->findOneBySlug(substr($request->getPathInfo(), 1), $request->get('key', null));
// no store found, return an empty collection
if (empty($store)) {
return $collection;
}
$route = new Route(
'/' . $store->getSlug(),
[
'_controller' => 'StoreBundle:Store:view',
'slug' => $stote->getSlug()
]
);
$collection->add($store->getSlug(), $route);
return $collection;
}
public function getRouteByName($name, $params = [])
{
}
public function getRoutesByNames($names)
{
}
}
如果有更好的方式来使用动态路线,我很乐意听到它:)
答案 0 :(得分:1)
日志条目是在“debug”级别创建的。您可以将记录器的最低级别设置得更高。如果您需要其他东西的调试日志,可以编写一个CompilerPass来删除symfony_cmf.router服务上的logger参数。
我同意将日志级别配置为有意义,使用false
选项可以完全禁用日志记录。如果你想要这个,我很乐意在路由组件上查看并合并代码和路由捆绑的拉取请求以公开配置。