From c4bd03a97e31e3e8826dda811cabe78b2fd9634f Mon Sep 17 00:00:00 2001 From: Mark Callaghan Date: Mon, 2 Mar 2015 09:35:50 -0800 Subject: [PATCH] Fix typo in log message Summary: fix typo Task ID: # Blame Rev: Test Plan: Revert Plan: Database Impact: Memcache Impact: Other Notes: EImportant: - begin *PUBLIC* platform impact section - Bugzilla: # - end platform impact - Reviewers: igor Reviewed By: igor Subscribers: dhruba Differential Revision: https://reviews.facebook.net/D34251 --- db/db_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/db_impl.cc b/db/db_impl.cc index 1fa6058fb..31f58b612 100644 --- a/db/db_impl.cc +++ b/db/db_impl.cc @@ -390,7 +390,7 @@ void DBImpl::PrintStatistics() { auto dbstats = db_options_.statistics.get(); if (dbstats) { Log(InfoLogLevel::INFO_LEVEL, db_options_.info_log, - "STATISTCS:\n %s", + "STATISTICS:\n %s", dbstats->ToString().c_str()); } }