blob: 66ef6ec12e595d6751b12da6f0e8097c549af1b1 [file] [log] [blame]
Avi Drissmane4622aa2022-09-08 20:36:061// Copyright 2013 The Chromium Authors
[email protected]86936532014-06-12 08:36:082// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/android/event_log.h"
Andrew Grieve1c7dbda2023-05-26 15:34:556#include "base/base_jni/EventLog_jni.h"
[email protected]86936532014-06-12 08:36:087
8namespace base {
9namespace android {
10
11void EventLogWriteInt(int tag, int value) {
12 Java_EventLog_writeEvent(AttachCurrentThread(), tag, value);
13}
14
[email protected]86936532014-06-12 08:36:0815} // namespace android
16} // namespace base