This is an automated email from the ASF dual-hosted git repository. vy pushed a commit to branch release/10.0.0 in repository https://gitbox.apache.org/repos/asf/logging-parent.git
commit 63e91ca377d2e4365545e2389049f90cdc7c5507 Author: Volkan Yazıcı <[email protected]> AuthorDate: Mon Sep 4 10:58:19 2023 +0200 Increase BSH diagnostics --- pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pom.xml b/pom.xml index 8d8b8fb..4bb90aa 100644 --- a/pom.xml +++ b/pom.xml @@ -646,6 +646,10 @@ } } }); + } catch (Exception error) { + // Supplement diagnostics + error.printStackTrace(System.err); + throw error; } finally { paths.close(); }
