From 04093cd33b47f7a9b24a15f30eaff70ea6cabbf9 Mon Sep 17 00:00:00 2001 From: "francesco.mangiacrapa" Date: Tue, 1 Oct 2024 16:00:49 +0200 Subject: [PATCH] updated logs --- .../application/cms/implementations/WorkspaceManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cms-plugin-framework/src/main/java/org/gcube/application/cms/implementations/WorkspaceManager.java b/cms-plugin-framework/src/main/java/org/gcube/application/cms/implementations/WorkspaceManager.java index bb2246d..b40cd99 100644 --- a/cms-plugin-framework/src/main/java/org/gcube/application/cms/implementations/WorkspaceManager.java +++ b/cms-plugin-framework/src/main/java/org/gcube/application/cms/implementations/WorkspaceManager.java @@ -164,7 +164,7 @@ public class WorkspaceManager { try { return vre.openByRelativePath(APP_FOLDER).asFolder(); }catch(StorageHubException e) { - log.debug("APP Fodler missing. Initializing.."); + log.debug("APP Folder missing. Initializing.."); FolderContainer toReturn= vre.newFolder(APP_FOLDER, "Base folder for GNA records"); toReturn.setHidden(); return toReturn; @@ -180,7 +180,7 @@ public class WorkspaceManager { @Synchronized private static FileContainer createFileRoutine(FileOptions opts) throws StorageHubException { // Updated by Francesco, see #28150 - log.debug("Uploading file name: {}, in the parent folder id: {}, filesize is: {}", opts.getFileName(), + log.info("Uploading file name: {}, in the parent folder id: {}, filesize is: {}", opts.getFileName(), opts.getParent().getId(), opts.getSize()); opts.setFileName(Files.fixFilename(opts.getFileName())); if (opts.getSize() == null)