Added exception to warning message per review

This commit is contained in:
2025-06-17 13:02:28 -05:00
parent caa6723cd2
commit 54f40fbc83

View File

@ -82,7 +82,7 @@ public class SimpleFileSystemDirectoryRouter implements QJavalinRouteProviderInt
catch(Exception e) catch(Exception e)
{ {
loadStaticFilesFromJar = false; loadStaticFilesFromJar = false;
LOG.warn("Exception attempting to read system property, defaulting to false. ", logPair("system property", SimpleFileSystemDirectoryRouter.loadStaticFilesFromJarProperty)); LOG.warn("Exception attempting to read system property, defaulting to false. ", e, logPair("system property", SimpleFileSystemDirectoryRouter.loadStaticFilesFromJarProperty));
} }
} }