• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
17 package android.util;
18 
19 /**
20  * Simple mock of Android logger class.
21  */
22 public final class Log {
v(String tag, String msg)23     public static int v(String tag, String msg) { return 0; }
v(String tag, String msg, Throwable tr)24     public static int v(String tag, String msg, Throwable tr) { return 0; }
d(String tag, String msg)25     public static int d(String tag, String msg) { return 0; }
d(String tag, String msg, Throwable tr)26     public static int d(String tag, String msg, Throwable tr) { return 0; }
i(String tag, String msg)27     public static int i(String tag, String msg) { return 0; }
i(String tag, String msg, Throwable tr)28     public static int i(String tag, String msg, Throwable tr) { return 0; }
w(String tag, String msg)29     public static int w(String tag, String msg) { return 0; }
w(String tag, String msg, Throwable tr)30     public static int w(String tag, String msg, Throwable tr) { return 0; }
isLoggable(String tag, int level)31     public static boolean isLoggable(String tag, int level) { return false; }
w(String tag, Throwable tr)32     public static int w(String tag, Throwable tr) { return 0; }
e(String tag, String msg)33     public static int e(String tag, String msg) { return 0; }
e(String tag, String msg, Throwable tr)34     public static int e(String tag, String msg, Throwable tr) { return 0; }
wtf(String tag, String msg)35     public static int wtf(String tag, String msg) { return 0; }
wtf(String tag, Throwable tr)36     public static int wtf(String tag, Throwable tr) { return 0; }
wtf(String tag, String msg, Throwable tr)37     public static int wtf(String tag, String msg, Throwable tr) { return 0; }
38 }
39