From d7f22c8e36239d9214af269f13e4c8ca317c2598 Mon Sep 17 00:00:00 2001 From: r-ca Date: Sun, 21 Jan 2024 16:15:11 +0900 Subject: [PATCH] =?UTF-8?q?null=E3=82=92=E3=82=AD=E3=83=A3=E3=83=83?= =?UTF-8?q?=E3=83=81=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=E3=81=97?= =?UTF-8?q?=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../one/nem/lacerta/source/file/impl/FileManagerImpl.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/src/main/java/one/nem/lacerta/source/file/impl/FileManagerImpl.java b/source/src/main/java/one/nem/lacerta/source/file/impl/FileManagerImpl.java index 6f8677db..25d5062b 100644 --- a/source/src/main/java/one/nem/lacerta/source/file/impl/FileManagerImpl.java +++ b/source/src/main/java/one/nem/lacerta/source/file/impl/FileManagerImpl.java @@ -62,6 +62,10 @@ public class FileManagerImpl implements FileManager { try { resolvedPath = resolvedPath.resolve(pathPart); } catch (Exception e) { + logger.error("resolveStringPath", e.getMessage()); + logger.debug("resolveStringPath", "this.path: " + this.path); + logger.debug("resolveStringPath", "pathPart: " + pathPart); + logger.debug("resolveStringPath", "resolvedPath: " + resolvedPath); throw new IOException("Invalid path: " + path); } }