Skip to content

Commit

Permalink
reduce out.log verbosity LDEV-3438
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Apr 10, 2021
1 parent 73c93b7 commit e0b4e65
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 60 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/runtime/config/ConfigFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,7 @@ private static Struct _loadDocument(Resource res) throws IOException, PageExcept
* @throws IOException
*/
static void createFileFromResource(String resource, Resource file, String password) throws IOException {
LogUtil.logGlobal(ThreadLocalPageContext.getConfig(), Log.LEVEL_INFO, ConfigFactory.class.getName(), "Write file: [" + file + "]");
LogUtil.logGlobal(ThreadLocalPageContext.getConfig(), Log.LEVEL_DEBUG, ConfigFactory.class.getName(), "Write file: [" + file + "]");
if (file.exists()) file.delete();

InputStream is = InfoImpl.class.getResourceAsStream(resource);
Expand Down
Loading

0 comments on commit e0b4e65

Please sign in to comment.