Re: RFR: 8301627: System.exit and Runtime.exit debug logging [v5]

2023-02-17 Thread Roger Riggs
On Fri, 17 Feb 2023 07:48:41 GMT, Alan Bateman wrote: >> Roger Riggs has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Improve implNote for Runtime.exit() with review suggestions. > > src/java.base/share/classes/java/lang/Runtime.java line

Re: RFR: 8301627: System.exit and Runtime.exit debug logging [v5]

2023-02-16 Thread Alan Bateman
On Thu, 16 Feb 2023 21:53:00 GMT, Roger Riggs wrote: >> It can be difficult to find the cause of calls to >> `java.lang.System.exit(status)` and `Runtime.exit(status)` because the Java >> runtime exits. >> The status value and stack trace are logged using the System Logger named >> `java.lang.

Re: RFR: 8301627: System.exit and Runtime.exit debug logging [v5]

2023-02-16 Thread Roger Riggs
> It can be difficult to find the cause of calls to > `java.lang.System.exit(status)` and `Runtime.exit(status)` because the Java > runtime exits. > The status value and stack trace are logged using the System Logger named > `java.lang.Runtime` with message level `System.Logger.Level.DEBUG`. Ro