(String msg, Throwable t)
| 1400 | |
| 1401 | |
| 1402 | private void loge(String msg, Throwable t) { |
| 1403 | if (t != null) { |
| 1404 | Messages.loge(getClass().getName() + " " + msg, t); |
| 1405 | } else { |
| 1406 | Messages.loge(getClass().getName() + " " + msg); |
| 1407 | } |
| 1408 | } |
| 1409 | |
| 1410 | |
| 1411 | static private void logitse(Throwable t) { |
no test coverage detected