You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@click.apache.org by "Bob Schellink (JIRA)" <ji...@apache.org> on 2010/02/06 16:42:28 UTC

[jira] Resolved: (CLK-623) MockContext tightly coupled with ConsoleLogService

     [ https://issues.apache.org/jira/browse/CLK-623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bob Schellink resolved CLK-623.
-------------------------------

    Resolution: Fixed

Thanks Andrey, fix checked in against 2.1.0

> MockContext tightly coupled with ConsoleLogService 
> ---------------------------------------------------
>
>                 Key: CLK-623
>                 URL: https://issues.apache.org/jira/browse/CLK-623
>             Project: Click
>          Issue Type: Bug
>          Components: mock
>    Affects Versions: 2.1.0 RC1
>            Reporter: Andrey Rybin
>            Assignee: Bob Schellink
>             Fix For: 2.1.0
>
>
> in MockContext initContext(MockServletConfig servletConfig,
>         MockRequest request, MockResponse response, ClickServlet clickServlet,
>         ActionEventDispatcher controlRegistry) { 
> ConsoleLogService logService = (ConsoleLogService) ClickUtils.getLogService();
>             logService.setLevel(ConsoleLogService.TRACE_LEVEL); 
> should be
> if (ClickUtils.getLogService() instanceof ConsoleLogService) {
> ConsoleLogService logService = (ConsoleLogService) ClickUtils.getLogService();
>             logService.setLevel(ConsoleLogService.TRACE_LEVEL); 
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.