updated logs

This commit is contained in:
Francesco Mangiacrapa 2024-10-01 16:00:49 +02:00
parent 0808d1e12c
commit 04093cd33b
1 changed files with 2 additions and 2 deletions

View File

@ -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)