summaryrefslogtreecommitdiff
path: root/openjdkjvmti
diff options
context:
space:
mode:
authorTom Cherry <tomcherry@google.com>2020-01-10 17:36:14 -0800
committerTom Cherry <tomcherry@google.com>2020-01-14 22:16:55 +0000
commit628f48871a9c7a1f18c2d5e1a76aa7afc716810d (patch)
tree5fb203100260313a76748c8b0ef9ff91b549a725 /openjdkjvmti
parent9406c43b2de9b94b6d70f82474840eccd7699dc7 (diff)
Remove the LogId parameter from libbase's LogMessage
This isn't used by anyone and shouldn't have existed in the first place, so it's being removed. Test: build Change-Id: Ifb0a1180a176291085cab01fd8e267184ea23cf1
Diffstat (limited to 'openjdkjvmti')
-rw-r--r--openjdkjvmti/ti_logging.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/openjdkjvmti/ti_logging.h b/openjdkjvmti/ti_logging.h
index a1be090b5d..b4ce5b6810 100644
--- a/openjdkjvmti/ti_logging.h
+++ b/openjdkjvmti/ti_logging.h
@@ -50,7 +50,6 @@ namespace openjdkjvmti {
::openjdkjvmti::JvmtiLogMessage((env), \
__FILE__, \
__LINE__, \
- ::android::base::DEFAULT, \
SEVERITY_LAMBDA(severity), \
_LOG_TAG_INTERNAL, \
-1)
@@ -60,12 +59,11 @@ class JvmtiLogMessage {
JvmtiLogMessage(jvmtiEnv* env,
const char* file,
unsigned int line,
- android::base::LogId id,
android::base::LogSeverity severity,
const char* tag,
int error)
: env_(ArtJvmTiEnv::AsArtJvmTiEnv(env)),
- real_log_(file, line, id, severity, tag, error),
+ real_log_(file, line, severity, tag, error),
real_log_stream_(real_log_.stream()) {
DCHECK(env_ != nullptr);
}