fix spdlog namespace

This commit is contained in:
Joao Moreno
2018-01-11 21:58:02 +01:00
parent a938045135
commit 357a63d914
3 changed files with 5 additions and 5 deletions

View File

@@ -44,7 +44,7 @@ public:
int retry_count = 0;
while ((ret == -11/*EAGAIN*/) && (retry_count < SPDLOG_ANDROID_RETRIES))
{
spdlog::details::os::sleep_for_millis(5);
details::os::sleep_for_millis(5);
ret = __android_log_write(priority, _tag.c_str(), msg_output);
retry_count++;
}