Fixed a bug in EventLoggerHelpers::LogTableFileCreation

Summary:
Fixed a missing "}" at the end of the generated JSON Log
in EventLoggerHelpers::LogTableFileCreation.

Test Plan: db_bench

Reviewers: igor

Reviewed By: igor

Subscribers: dhruba, leveldb

Differential Revision: https://reviews.facebook.net/D38919
main
Yueh-Hsuan Chiang 9 years ago
parent a0580205c8
commit 6d299b70b8
  1. 1
      db/event_logger_helpers.cc

@ -53,6 +53,7 @@ void EventLoggerHelpers::LogTableFileCreation(
}
jwriter.EndObject();
}
jwriter.EndObject();
event_logger->Log(jwriter);
}

Loading…
Cancel
Save