我想知道是否有任何简单的方法可以在代码点火器中调试路由?
最好我希望能够在日志中看到以下内容:
Client sent : apps/something
Route found : apps/(:any) --> applications/searchbyname/$1
Redirecting : apps/something --> applications/searchbyname/something
//and just cause we can lets make the searchbyname function not exist
ERROR - 2012-09-16 22:10:05 --> 404 Page Not Found --> applications/searchbyname/something
基本上,这意味着我们可以看到我们何时到达路线以及它试图加载的位置。
有什么方法可以实现这些方面的功能吗?