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
This commit is contained in:
Yueh-Hsuan Chiang 2015-05-26 10:55:46 -07:00
parent a0580205c8
commit 6d299b70b8

View File

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