On Wed, 25 Nov 2020 21:36:12 GMT, Alex Menkov <[email protected]> wrote:
> JdbTest can get exception before jdb field is initialized.
> As Jdb logging does not depend on the instance, made Jdb.log method static
test/jdk/com/sun/jdi/lib/jdb/JdbTest.java line 99:
> 97: Jdb.log("=======================================");
> 98: Jdb.log("Exception thrown during test execution: " +
> e.getMessage());
> 99: Jdb.log("=======================================");
Why not just print it to `System.out` then, eliminating the method altogether?
-------------
PR: https://git.openjdk.java.net/jdk/pull/1443