blob: 70795bbc43c0135cd4421beabb6e9f03ca2768d1 [file] [log] [blame]
Joe Onorato00bb9382010-02-26 18:07:01 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.util;
18
19import com.android.internal.os.RuntimeInit;
20
21import java.io.PrintWriter;
22import java.io.StringWriter;
23
24/**
25 * @hide
26 */
27public final class Slog {
28
29 private Slog() {
30 }
31
32 public static int v(String tag, String msg) {
33 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag, msg);
34 }
35
36 public static int v(String tag, String msg, Throwable tr) {
37 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag,
38 msg + '\n' + Log.getStackTraceString(tr));
39 }
40
41 public static int d(String tag, String msg) {
42 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag, msg);
43 }
44
45 public static int d(String tag, String msg, Throwable tr) {
46 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag,
47 msg + '\n' + Log.getStackTraceString(tr));
48 }
49
50 public static int i(String tag, String msg) {
51 return Log.println_native(Log.LOG_ID_SYSTEM, Log.INFO, tag, msg);
52 }
53
54 public static int i(String tag, String msg, Throwable tr) {
55 return Log.println_native(Log.LOG_ID_SYSTEM, Log.INFO, tag,
56 msg + '\n' + Log.getStackTraceString(tr));
57 }
58
59 public static int w(String tag, String msg) {
60 return Log.println_native(Log.LOG_ID_SYSTEM, Log.WARN, tag, msg);
61 }
62
63 public static int w(String tag, String msg, Throwable tr) {
64 return Log.println_native(Log.LOG_ID_SYSTEM, Log.WARN, tag,
65 msg + '\n' + Log.getStackTraceString(tr));
66 }
67
68 public static int w(String tag, Throwable tr) {
69 return Log.println_native(Log.LOG_ID_SYSTEM, Log.WARN, tag, Log.getStackTraceString(tr));
70 }
71
72 public static int e(String tag, String msg) {
73 return Log.println_native(Log.LOG_ID_SYSTEM, Log.ERROR, tag, msg);
74 }
75
76 public static int e(String tag, String msg, Throwable tr) {
77 return Log.println_native(Log.LOG_ID_SYSTEM, Log.ERROR, tag,
78 msg + '\n' + Log.getStackTraceString(tr));
79 }
80
Dianne Hackborn164371f2013-10-01 19:10:13 -070081 public static int wtf(String tag, String msg) {
Dianne Hackborn878deb32013-10-14 16:55:09 -070082 return Log.wtf(Log.LOG_ID_SYSTEM, tag, msg, null, false);
Dianne Hackborn164371f2013-10-01 19:10:13 -070083 }
84
85 public static int wtfStack(String tag, String msg) {
Dianne Hackborn878deb32013-10-14 16:55:09 -070086 return Log.wtf(Log.LOG_ID_SYSTEM, tag, msg, null, true);
Dianne Hackborn164371f2013-10-01 19:10:13 -070087 }
88
89 public static int wtf(String tag, Throwable tr) {
Dianne Hackborn878deb32013-10-14 16:55:09 -070090 return Log.wtf(Log.LOG_ID_SYSTEM, tag, tr.getMessage(), tr, false);
Dianne Hackborn164371f2013-10-01 19:10:13 -070091 }
92
93 public static int wtf(String tag, String msg, Throwable tr) {
Dianne Hackborn878deb32013-10-14 16:55:09 -070094 return Log.wtf(Log.LOG_ID_SYSTEM, tag, msg, tr, false);
Dianne Hackborn164371f2013-10-01 19:10:13 -070095 }
96
Joe Onorato00bb9382010-02-26 18:07:01 -080097 public static int println(int priority, String tag, String msg) {
98 return Log.println_native(Log.LOG_ID_SYSTEM, priority, tag, msg);
99 }
100}
101