DaanHoogland commented on code in PR #8031:
URL: https://github.com/apache/cloudstack/pull/8031#discussion_r1351619558
##########
server/src/main/java/com/cloud/storage/StorageManagerImpl.java:
##########
@@ -1343,7 +1358,7 @@ public void cleanupStorage(boolean recurring) {
// system, but not necessary.
handleManagedStorage(vol);
} catch (Exception e) {
- s_logger.warn("Unable to destroy host-side
clustered file system " + vol.getUuid(), e);
+ s_logger.error(String.format("Unable to destroy
host-side clustered file system [%s] due to: [%s].", vol.getUuid(),
e.getMessage()), e);
Review Comment:
```suggestion
s_logger.error(String.format("Unable to destroy
host-side clustered file system [%s] due to: [%s].", vol.getUuid(),
e.getMessage()));
s_logger.error(String.format("Unable to destroy
host-side clustered file system [%s].", vol.getUuid()), e);
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]