(String message)
| 204 | } |
| 205 | |
| 206 | public static void persist(String message) { |
| 207 | if (ctx == null) |
| 208 | org.tinylog.Logger.tag(TAG).error(message); |
| 209 | else |
| 210 | EntityLog.log(ctx, message); |
| 211 | } |
| 212 | |
| 213 | public static void persist(EntityLog.Type type, String message) { |
| 214 | if (ctx == null) |