Skip to content

Commit f93016e

Browse files
committed
"atomic-moved-failed" message is now info.
1 parent 30bdf2b commit f93016e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/de/unirostock/sems/cbarchive/web/WorkspaceManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ public synchronized void storeSettings() {
259259
Files.move( temp.toPath(), Fields.SETTINGS_FILE.toPath(), StandardCopyOption.REPLACE_EXISTING, StandardCopyOption.ATOMIC_MOVE );
260260
}
261261
catch (AtomicMoveNotSupportedException e) {
262-
LOGGER.warn(e, "Atomic move of settings file failed. Fallback to normal operation. This is normal in a Virtualisation Container");
262+
LOGGER.info(e, "Atomic move of settings file failed. Fallback to normal operation.");
263263
Files.move( temp.toPath(), Fields.SETTINGS_FILE.toPath(), StandardCopyOption.REPLACE_EXISTING );
264264
}
265265

0 commit comments

Comments
 (0)