sstables: improve log message when a sstable is sealed

Signed-off-by: Raphael S. Carvalho <raphaelsc@scylladb.com>
Message-Id: <e391243212d83347b1b50c728bee24f6a2ecc950.1455230788.git.raphaelsc@scylladb.com>
This commit is contained in:
Raphael S. Carvalho
2016-02-11 20:46:35 -02:00
committed by Avi Kivity
parent 456275e06a
commit a487ef1ff3

View File

@@ -785,7 +785,7 @@ void sstable::seal_sstable() {
dir_f.flush().get();
dir_f.close().get();
// If this point was reached, sstable should be safe in disk.
sstlog.debug("SSTable with generation {} was sealed successfully.", _generation);
sstlog.debug("SSTable with generation {} of {}/{} was sealed successfully.", _generation, _ks, _cf);
}
void write_crc(const sstring file_path, checksum& c) {