GitHub user matthiasblaesing added a comment to the discussion: Open file from console
Normally NetBeans detects a running instance and uses a socket to communicate to that instance. Something is going wrong there. Please do this: 1. Create a file `jul.properties` with this content: ```properties .level=INFO org.netbeans.CLIHandler.level=FINEST handlers=java.util.logging.ConsoleHandler java.util.logging.ConsoleHandler.level=ALL java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter java.util.logging.ConsoleHandler.encoding=UTF-8 ``` 2. Run your shell experiment again with this parameter: `-J-Djava.util.logging.config.file=<PATH_TO_PROPERTIES>/jul.properties`. The idea here is, that the properties file configures the logging system so that the CLIHandler (responsible for the error message) logging is more verbose. Please provide the result. GitHub link: https://github.com/apache/netbeans/discussions/8983#discussioncomment-14914642 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
