Merge pull request #752 from baishuai/v1.x

fix bug in android_sink.h
This commit is contained in:
Gabi Melman 2018-07-13 20:18:14 +03:00 committed by GitHub
commit 2bc05b6b17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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