Skip to content

Commit

Permalink
add temporary debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Apr 5, 2024
1 parent fe5e4cd commit 9e7996b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/src/main/java/lucee/runtime/PageSourceImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,11 @@ private Page loadArchive(Page page) {
pcn.set(page);
return page;
}
catch (ClassNotFoundException cnfe) {
return null;
}
catch (Exception e) {
LogUtil.log("compiler", e);
print.e("---- load archive ---");
print.e(e);
// MUST print.e(e); is there a better way?
Expand Down

0 comments on commit 9e7996b

Please sign in to comment.