Skip to content

Commit

Permalink
[Disk Manager]: Add logging on chunk write success (#1540)
Browse files Browse the repository at this point in the history
In disk manager nemesis tests, the milestone of the snapshot creation is not being updated, despite write of all the chunks to the YDB is started. Add more verbose logging for finished chunk writes.
  • Loading branch information
jkuradobery committed Jul 4, 2024
1 parent 5f62470 commit ad640ee
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,12 @@ func (s *storageYDB) writeDataChunk(
return "", err
}

logging.Debug(
ctx,
"written chunk %v for snapshot %v",
chunk.ID,
snapshotID,
)
return chunk.ID, nil
}

Expand Down

0 comments on commit ad640ee

Please sign in to comment.