From 30717e043a876a6124967d07649e322768088767 Mon Sep 17 00:00:00 2001 From: Naseer Ahmed Date: Wed, 13 Feb 2013 11:53:10 -0500 Subject: [PATCH] utils: Allow non android namespaces to use ALOGD_IF_SLOW Change-Id: I9207b64954fae2f56cc5f6aa5796a2e737400623 --- include/utils/Log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/utils/Log.h b/include/utils/Log.h index 98c441c80..4259c86d1 100644 --- a/include/utils/Log.h +++ b/include/utils/Log.h @@ -62,7 +62,7 @@ private: * } */ #define ALOGD_IF_SLOW(timeoutMillis, message) \ - LogIfSlow _logIfSlow(LOG_TAG, ANDROID_LOG_DEBUG, timeoutMillis, message); + android::LogIfSlow _logIfSlow(LOG_TAG, ANDROID_LOG_DEBUG, timeoutMillis, message); } // namespace android