Added logging

This commit is contained in:
M66B
2024-01-01 22:56:06 +01:00
parent b87ddb9ca6
commit ea9125ff72

View File

@@ -221,6 +221,8 @@ public class DnsHelper {
Set<? extends Data> answers = r.getAnswers();
if (answers != null)
for (Data answer : answers) {
if (BuildConfig.DEBUG)
EntityLog.log(context, EntityLog.Type.Network, name + ":" + type + "=" + answer);
Log.i("Answer=" + answer);
if (answer instanceof NS) {
NS ns = (NS) answer;