summaryrefslogtreecommitdiffstats
path: root/libutils/Log.cpp
diff options
context:
space:
mode:
authorTom Cherry <tomcherry@google.com>2017-07-10 14:36:53 -0700
committerTom Cherry <tomcherry@google.com>2017-07-12 17:59:12 +0000
commit08678e1f8bfe6a994929e055ddc76d196673a22e (patch)
treedee219fc31b931a76e6143e50123e815d5d1bfc8 /libutils/Log.cpp
parent896297b2ef10a58fc614aebce8724d342d81f85e (diff)
downloadsystem_core-08678e1f8bfe6a994929e055ddc76d196673a22e.tar.gz
system_core-08678e1f8bfe6a994929e055ddc76d196673a22e.tar.bz2
system_core-08678e1f8bfe6a994929e055ddc76d196673a22e.zip
Remove ALOGD_IF_SLOW
ALOGD_IF_SLOW isn't intuitively implemented as it cannot handle temporaries used as its parameters. Since there are so few users of it already and since it's just sugar on top of 2 otherwise trivial lines, we opt to remove it entirely. Bug: 62820330 Test: Build Change-Id: Ie91b40cdaf650154203ccf0ca70e029cc097b350 Merged-In: Ie91b40cdaf650154203ccf0ca70e029cc097b350
Diffstat (limited to 'libutils/Log.cpp')
-rw-r--r--libutils/Log.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/libutils/Log.cpp b/libutils/Log.cpp
deleted file mode 100644
index bffb56eda..000000000
--- a/libutils/Log.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) 2012 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#define LOG_TAG "Log"
-
-#include <utils/Log.h>
-#include <utils/Timers.h>
-
-namespace android {
-
-LogIfSlow::LogIfSlow(const char* tag, android_LogPriority priority,
- int timeoutMillis, const char* message) :
- mTag(tag), mPriority(priority), mTimeoutMillis(timeoutMillis), mMessage(message),
- mStart(systemTime(SYSTEM_TIME_BOOTTIME)) {
-}
-
-LogIfSlow::~LogIfSlow() {
- int durationMillis = nanoseconds_to_milliseconds(systemTime(SYSTEM_TIME_BOOTTIME) - mStart);
- if (durationMillis > mTimeoutMillis) {
- LOG_PRI(mPriority, mTag, "%s: %dms", mMessage, durationMillis);
- }
-}
-
-} // namespace android