Adding additional logging

This commit is contained in:
Oleg Zhurakousky
2022-01-27 11:31:21 +01:00
parent 2bdc08f757
commit 1c06770975

View File

@@ -100,7 +100,8 @@ public class ProjectCommandExecutor {
log.info("No HTML files from docs contain unresolved tags");
}
catch (Exception e) {
throw new IllegalStateException(e);
String message = properties + "\n" + originalVersion + "\n" + versionFromReleaseTrain + "\n" + projectRoot;
throw new IllegalStateException(message, e);
}
}