diff options
author | Naseer Ahmed <naseer@codeaurora.org> | 2013-02-13 11:53:10 -0500 |
---|---|---|
committer | Alex Ray <aray@google.com> | 2013-07-30 13:57:00 -0700 |
commit | ca3e2a276afa03cfffb2b989e28adfc44ec50d6f (patch) | |
tree | c74e91672be85be84b6d144d5f479a967331a6c6 /include/utils | |
parent | d30884aa0cb6e8286aca78fc73d9b239f727627e (diff) | |
download | system_core-ca3e2a276afa03cfffb2b989e28adfc44ec50d6f.zip system_core-ca3e2a276afa03cfffb2b989e28adfc44ec50d6f.tar.gz system_core-ca3e2a276afa03cfffb2b989e28adfc44ec50d6f.tar.bz2 |
utils: Allow non android namespaces to use ALOGD_IF_SLOW
Change-Id: I9207b64954fae2f56cc5f6aa5796a2e737400623
Diffstat (limited to 'include/utils')
-rw-r--r-- | include/utils/Log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/utils/Log.h b/include/utils/Log.h index 98c441c..4259c86 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 |