You should also add a command line switch to your application to suppress console output in this case, since '&' just starts executable in background and still connects current tty device to its stdout and stderr. Thus if you run your application this way you will still see it's log messages output (unless you log out).
Or you can manually redirect output with '>'.
Bookmarks