Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ public ExecutionResult executeInVR(final String routerIp, final String script, f
details = parser.getLines();
}

s_logger.debug("Executing script in VR: " + script);
s_logger.debug("Dummy string change Executing script in VR: " + script);

return new ExecutionResult(command.getExitValue() == 0, details);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,7 @@ public void scheduleBackups() {
tmpBackupScheduleVO.setAsyncJobId(jobId);
backupScheduleDao.update(backupScheduleId, tmpBackupScheduleVO);
} catch (Exception e) {
LOG.error(String.format("Scheduling backup failed due to: [%s].", e.getMessage()), e);
LOG.error(String.format("Scheduling backup has failed due to: [%s].", e.getMessage()), e);
} finally {
if (tmpBackupScheduleVO != null) {
backupScheduleDao.releaseFromLockTable(backupScheduleId);
Expand Down Expand Up @@ -1113,7 +1113,7 @@ public BackupOffering updateBackupOffering(UpdateBackupOfferingCmd updateBackupO
}

BackupOfferingVO response = backupOfferingDao.findById(id);
CallContext.current().setEventDetails(String.format("Backup Offering updated [%s].",
CallContext.current().setEventDetails(String.format("Backup Offering dummy change updated [%s].",
ReflectionToStringBuilderUtils.reflectOnlySelectedFields(response, "id", "name", "description", "userDrivenBackupAllowed", "externalId")));
return response;
}
Expand Down