I have very simple batch script file with this line:
echo "Welcome to my script"
start "Title of my program" /wait /b "C:\Program Files (x86)\path_to_my_program\MyProgram.exe" %1 %2 %3 %4 %5
The script simply receives several arguments (up to five) and passes them to my application. Application does some actions on those params and stores them in some file.
Everything is working well, except any output in my application made with System.out.println()
is not shown in windows command dock.
The application is self-packaged JavaFx Bundle.
Please any advice will be appreciated.
P.S. I can see output that is produced by script (echo
). I can't see output from within the application neither form stdout neither from logback.