I have One workstation running multiple instances of Java applications for Testing, and I develop an application for Listening Logs, TCP like (http://esus.com/using-java-util-logging-sockethandler/) and UDP like (https://www.geeksforgeeks.org/working-udp-datagramsockets-java/)
I need to send the logs of each applications to respective tester (with my for Listening Logs), I was thinking Maven redirect output logs (Logging) to remote server
Later, I was reading these questions:
Attach IntelliJ IDEA debugger to a running Java process
IntelliJ read remote server log file
How to debug a jar remotely from netbeans
What are Java command line options to set to allow JVM to be remotely debugged?
and this post.
https://www.eclipsezone.com//eclipse/forums/t53459.html
My Question is:
How can I to redirect Logs/Logging to Remote Server using Java command line options? without IDE dependency (or using only console).