Use TinyLog for protocol logging

This commit is contained in:
M66B
2023-12-14 15:55:51 +01:00
parent 067c3e3a59
commit f747721559
2 changed files with 10 additions and 8 deletions

View File

@@ -289,6 +289,11 @@ public class Log {
return 0;
}
public static int w(String tag, String msg) {
org.tinylog.Logger.tag(tag).warn(msg);
return 0;
}
public static int w(Throwable ex) {
if (BuildConfig.BETA_RELEASE)
try {