[jbosstools-issues] [JBoss JIRA] Commented: (JBIDE-8312) Server Log View only showing successes, specifically ignoring logging errors (WTF)

Rob Stryker (JIRA) jira-events at lists.jboss.org
Wed Feb 2 16:35:39 EST 2011


    [ https://issues.jboss.org/browse/JBIDE-8312?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12579675#comment-12579675 ] 

Rob Stryker commented on JBIDE-8312:
------------------------------------

in ./plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers/AbstractPublishMethod.java

		if( result != null && result.isOK())
	        ServerLogger.getDefault().log(behaviour.getServer(), result);

The result.isOK() is clearly wrong and should be removed. The lines should read
		if( result != null )
	        ServerLogger.getDefault().log(behaviour.getServer(), result);


> Server Log View only showing successes, specifically ignoring logging errors (WTF)
> ----------------------------------------------------------------------------------
>
>                 Key: JBIDE-8312
>                 URL: https://issues.jboss.org/browse/JBIDE-8312
>             Project: Tools (JBoss Tools)
>          Issue Type: Bug
>          Components: JBossAS
>    Affects Versions: 3.2.0.CR1
>            Reporter: Rob Stryker
>            Assignee: Rob Stryker
>             Fix For: 3.2.0.CR2 (tentative)
>
>
> Critical erorr, tiny patch

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the jbosstools-issues mailing list