Make SSTDumpTest.GetProperties less noisy

Summary:
Limiting verbose printing to "command=scan"

Test Plan:
Run make check and manual testing of sst_dump_test

Reviewers: sdong

CC: leveldb

Task ID: #6575982

Blame Rev:
main
krad 10 years ago
parent 51da3aab4a
commit 689391406a
  1. 2
      util/sst_dump_tool.cc

@ -377,7 +377,7 @@ int SSTDumpTool::Run(int argc, char** argv) {
// scan all files in give file path.
if (command == "" || command == "scan" || command == "check") {
st = reader.ReadSequential(command != "check",
st = reader.ReadSequential(command == "scan",
read_num > 0 ? (read_num - total_read) :
read_num,
has_from, from_key, has_to, to_key);

Loading…
Cancel
Save