Skip to content

Commit a9f591f

Browse files
committed
os/bluestore: rename row names in RocksDBBlueFSVolumeSelector.
Signed-off-by: Igor Fedotov <[email protected]>
1 parent 158d155 commit a9f591f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/os/bluestore/BlueStore.cc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19678,13 +19678,13 @@ void RocksDBBlueFSVolumeSelector::dump(ostream& sout) {
1967819678
sout.width(width);
1967919679
switch (l + LEVEL_FIRST) {
1968019680
case LEVEL_LOG:
19681-
sout << "LOG"; break;
19681+
sout << "log"; break;
1968219682
case LEVEL_WAL:
19683-
sout << "WAL"; break;
19683+
sout << "db.wal"; break;
1968419684
case LEVEL_DB:
19685-
sout << "DB"; break;
19685+
sout << "db"; break;
1968619686
case LEVEL_SLOW:
19687-
sout << "SLOW"; break;
19687+
sout << "db.slow"; break;
1968819688
case LEVEL_MAX:
1968919689
sout << "TOTAL"; break;
1969019690
}
@@ -19705,13 +19705,13 @@ void RocksDBBlueFSVolumeSelector::dump(ostream& sout) {
1970519705
sout.width(width);
1970619706
switch (l + LEVEL_FIRST) {
1970719707
case LEVEL_LOG:
19708-
sout << "LOG"; break;
19708+
sout << "log"; break;
1970919709
case LEVEL_WAL:
19710-
sout << "WAL"; break;
19710+
sout << "db.wal"; break;
1971119711
case LEVEL_DB:
19712-
sout << "DB"; break;
19712+
sout << "db"; break;
1971319713
case LEVEL_SLOW:
19714-
sout << "SLOW"; break;
19714+
sout << "db.slow"; break;
1971519715
case LEVEL_MAX:
1971619716
sout << "TOTAL"; break;
1971719717
}

0 commit comments

Comments
 (0)