[ https://issues.apache.org/jira/browse/KARAF-2437?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13736546#comment-13736546
]
Jean-Baptiste Onofré edited comment on KARAF-2437 at 8/12/13 4:14 AM:
----------------------------------------------------------------------
Fixed on karaf-2.3.x: http://svn.apache.org/viewvc?view=revision&revision=1513036
was (Author: jbonofre):
Fix on karaf-2.3.x: http://svn.apache.org/viewvc?view=revision&revision=1513036
> Logs still have been printed into console after log:tail and Ctrl + C
> ---------------------------------------------------------------------
>
> Key: KARAF-2437
> URL: https://issues.apache.org/jira/browse/KARAF-2437
> Project: Karaf
> Issue Type: Bug
> Components: cellar-shell
> Affects Versions: 2.3.3
> Environment: Win7 64bit Java 7
> Reporter: Xilai Dai
> Assignee: Jean-Baptiste Onofré
> Fix For: 2.3.3, 2.4.0, 3.0.0
>
>
> With the latest 2.3.3-snapshot version, execute log:tail and then Ctrl + C, but logs
will still be printed into the console continuously.
> Seems a new PrintEventThread class introduced recently, but there is no any exit statement
in the run() method, add code below into the beginning of run() should work:
> {code}
> if (!needEndLog) {
> return;
> }
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
|