diff options
| author | 2023-12-06 04:12:19 +0000 | |
|---|---|---|
| committer | 2023-12-06 04:12:19 +0000 | |
| commit | e6d39e67bb0ad347a4f3592dbf2d388bc611b7e2 (patch) | |
| tree | 476b116c1ed44c07380e635a0f7fbaf76c464d9a | |
| parent | 76a85e92187d7441ea501516c3316c820d812a59 (diff) | |
| parent | 350de73438212fb5bcbe77df1f5ed9fba446aa3d (diff) | |
Merge "Fix -Wunused-variable compiler warning" into main
| -rw-r--r-- | services/incremental/IncrementalService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/incremental/IncrementalService.cpp b/services/incremental/IncrementalService.cpp index 81a547290d5e..a8e6f689b424 100644 --- a/services/incremental/IncrementalService.cpp +++ b/services/incremental/IncrementalService.cpp @@ -910,7 +910,7 @@ void IncrementalService::disallowReadLogs(StorageId storageId) { constants().readLogsDisabledMarkerName), 0777, idFromMetadata(metadata), {})) { //{.metadata = {metadata.data(), (IncFsSize)metadata.size()}})) { - LOG(ERROR) << "Failed to make marker file for storageId: " << storageId; + LOG(ERROR) << "Failed to make marker file for storageId: " << storageId << " err: " << -err; return; } |