1/*
2 * Copyright (C) 2013 Google Inc.
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
19/**
20 * Simple mock of Android logger class.
21 */
22public final class Log {
23    public static int v(String tag, String msg) { return 0; }
24    public static int v(String tag, String msg, Throwable tr) { return 0; }
25    public static int d(String tag, String msg) { return 0; }
26    public static int d(String tag, String msg, Throwable tr) { return 0; }
27    public static int i(String tag, String msg) { return 0; }
28    public static int i(String tag, String msg, Throwable tr) { return 0; }
29    public static int w(String tag, String msg) { return 0; }
30    public static int w(String tag, String msg, Throwable tr) { return 0; }
31    public static boolean isLoggable(String tag, int level) { return false; }
32    public static int w(String tag, Throwable tr) { return 0; }
33    public static int e(String tag, String msg) { return 0; }
34    public static int e(String tag, String msg, Throwable tr) { return 0; }
35    public static int wtf(String tag, String msg) { return 0; }
36    public static int wtf(String tag, Throwable tr) { return 0; }
37    public static int wtf(String tag, String msg, Throwable tr) { return 0; }
38}
39