Details
Description
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:
if (!needEndLog) { return; }