(String tag, String msg)
| 76 | } |
| 77 | |
| 78 | public static void i(String tag, String msg) { |
| 79 | if (Log.level.level <= Level.INFO.level) { |
| 80 | getInstance().i(tag, msg); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | public static void i(String tag, String msg, Throwable tr) { |
| 85 | if (Log.level.level <= Level.INFO.level) { |
no test coverage detected