(String message)
| 17 | } |
| 18 | |
| 19 | public Logger log(String message) { |
| 20 | if (BuildConfig.DEBUG) { |
| 21 | Log.println(priority, TAG, message); |
| 22 | } |
| 23 | return this; |
| 24 | } |
| 25 | |
| 26 | public void withCause(Exception cause) { |
| 27 | if (BuildConfig.DEBUG) { |
nothing calls this directly
no outgoing calls
no test coverage detected