Experiment: debug wait after EOF

This commit is contained in:
M66B
2021-10-21 15:03:18 +02:00
parent 4c34d918a3
commit a6f9f34480
2 changed files with 15 additions and 2 deletions

View File

@@ -43,4 +43,11 @@ public class TrafficStatsHelper {
else
EntityLog.log(ctx, EntityLog.Type.Statistics, msg);
}
public static void debug(String msg) {
if (ctx == null)
Log.e(msg);
else
EntityLog.log(ctx, EntityLog.Type.General, msg);
}
}