(String tag, String message)
| 60 | } |
| 61 | |
| 62 | public static int d(String tag, String message) { |
| 63 | if (DEBUG_LEVEL.level() >= DebugLevel.DEBUG.level()) |
| 64 | return Log.d(tag, message); |
| 65 | |
| 66 | return -2; |
| 67 | } |
| 68 | public static int debug(String tag, String message) { |
| 69 | return d(tag, message); |
| 70 | } |