vishesh92 commented on code in PR #8698: URL: https://github.com/apache/cloudstack/pull/8698#discussion_r1503279172
########## plugins/hypervisors/xenserver/src/main/java/com/cloud/hypervisor/xenserver/resource/CitrixResourceBase.java: ########## @@ -1972,7 +1972,7 @@ protected void finalizeVmMetaData(final VM vm, final VM.Record vmr, final Connec // Add configuration settings VM record for User VM instances before creating VM Map<String, String> extraConfig = vmSpec.getExtraConfig(); if (vmSpec.getType().equals(VirtualMachine.Type.User) && MapUtils.isNotEmpty(extraConfig)) { - logger.info("Appending user extra configuration settings to VM"); + logger.info("Appending user extra configuration settings [{}] to [{}].", extraConfig, vmSpec)); Review Comment: ```suggestion logger.info(String.format("Appending user extra configuration settings [{}] to [{}].", extraConfig, vmSpec)); ``` Checkstyle failing because of this -- 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: commits-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org