fix bug in LOG for flush memtable

Summary:
  One line change to fix a bug in the LOG when flush memtable

Test Plan:
  NONE

Reviewers: sdong

Reviewed By: sdong

Differential Revision: https://reviews.facebook.net/D20049
This commit is contained in:
Feng Zhu 2014-07-16 16:56:49 -07:00
parent 1c9f190ae3
commit 87895c62db

View File

@ -1464,7 +1464,7 @@ Status DBImpl::WriteLevel0Table(ColumnFamilyData* cfd,
delete iter;
Log(options_.info_log,
"[%s] Level-0 flush table #%" PRIu64 ": %" PRIu64 " bytes %s",
cfd->GetName().c_str(), meta.fd.GetFileSize(), meta.fd.GetFileSize(),
cfd->GetName().c_str(), meta.fd.GetNumber(), meta.fd.GetFileSize(),
s.ToString().c_str());
if (!options_.disableDataSync) {