You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: engine/storage/snapshot/src/main/java/org/apache/cloudstack/storage/snapshot/StorageSystemSnapshotStrategy.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -116,6 +116,7 @@ public SnapshotInfo backupSnapshot(SnapshotInfo snapshotInfo) {
116
116
Preconditions.checkArgument(snapshotInfo != null, "'snapshotInfo' cannot be 'null'.");
117
117
118
118
if (snapshotInfo.getLocationType() != Snapshot.LocationType.SECONDARY) {
119
+
logger.info("backupSnapshot markAsBackedUp");
119
120
markAsBackedUp((SnapshotObject)snapshotInfo);
120
121
returnsnapshotInfo;
121
122
}
@@ -124,7 +125,7 @@ public SnapshotInfo backupSnapshot(SnapshotInfo snapshotInfo) {
124
125
// snapshot on the storage or exists as a volume on the storage (clone).
125
126
// If archive flag is passed in, we should copy this snapshot to secondary
126
127
// storage and delete it from primary storage.
127
-
128
+
logger.info("backupSnapshot copy to secondary storage");
0 commit comments