I want to output one file event per single line running this command... `fswatch --format ‘%p, %f’ ~/test/` and execute this command. `touch ~/test/test.txt` `rm ~/test/test.txt` then I got such output. ``` ~/test/test.txt, Created IsFile ~/test/test.txt, Created Removed IsFile ``` but, I want to get such output. ``` ~/test/test.txt, Created IsFile ~/test/test.txt, Removed IsFile ```