fix bug in android_sink.h

This commit is contained in:
baishuai 2018-07-13 23:41:26 +08:00
parent 16ee72da7c
commit 41f708e438
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ private:
template<typename Factory = default_factory>
inline std::shared_ptr<logger> android_logger(const std::string &logger_name, const std::string &tag = "spdlog")
{
return return Factory::template create<sinks::android_sink>(logger_name, tag);
return Factory::template create<sinks::android_sink>(logger_name, tag);
}
} // namespace spdlog