Fix typo in Android logger

This commit is contained in:
Romain Thomas 2019-02-13 09:19:29 +01:00
parent d235e7d46f
commit 4f86448bd4
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ void syslog_example()
void android_example()
{
std::string tag = "spdlog-android";
auto android_logger = spdlog::android_logger("android", tag);
auto android_logger = spdlog::android_logger_mt("android", tag);
android_logger->critical("Use \"adb shell logcat\" to view this message.");
}
```