Skip to content

Commit

Permalink
Fix warning about unused errors in sync data actor
Browse files Browse the repository at this point in the history
Signed-off-by: Claudio Cambra <[email protected]>
  • Loading branch information
claucambra committed Jun 22, 2024
1 parent 26ad457 commit 41bcded
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Harmony/Sync/SyncDataActor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ actor SyncDataActor {
}
return existingSong.versionId != versionId
} catch let error {
Logger.sync.error("Could not get accurate approval for container, approving")
Logger.sync.error("Could not get accurate approval for container (\(error)), approving")
return true
}
}
Expand All @@ -57,7 +57,7 @@ actor SyncDataActor {
}
return existingSongContainer.versionId != versionId
} catch let error {
Logger.sync.error("Could not get accurate approval for container, approving")
Logger.sync.error("Could not get accurate approval for container (\(error)), approving")
return true
}
}
Expand Down

0 comments on commit 41bcded

Please sign in to comment.