From dad70310c5adc91901bb67c469ab7ee2286afc5f Mon Sep 17 00:00:00 2001 From: fcoulombe Date: Tue, 17 Feb 2015 12:36:51 -0300 Subject: [PATCH] franky fixes a typo --- include/spdlog/sinks/android_sink.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/spdlog/sinks/android_sink.h b/include/spdlog/sinks/android_sink.h index 690373b7..befeb462 100644 --- a/include/spdlog/sinks/android_sink.h +++ b/include/spdlog/sinks/android_sink.h @@ -50,7 +50,7 @@ public: protected: virtual void _sink_it(const details::log_msg& msg) override { - constexpr int LoveLevelMapping[] = + constexpr int LogLevelMapping[] = { ANDROID_LOG_VERBOSE, ANDROID_LOG_DEBUG, @@ -63,7 +63,7 @@ protected: ANDROID_LOG_FATAL, ANDROID_LOG_SILENT, }; - ((void)__android_log_print(LoveLevelMapping[msg.level], msg.logger_name.c_str(), msg.formatted.data())); + ((void)__android_log_print(LogLevelMapping[msg.level], msg.logger_name.c_str(), msg.formatted.data())); } //std::ostream& _ostream;