Get encryption key

This commit is contained in:
M66B
2019-04-24 11:23:48 +02:00
parent ea4453fa16
commit 3fdba49f88
3 changed files with 68 additions and 51 deletions

View File

@@ -75,7 +75,7 @@ public class Log {
stringBuilder.append(key)
.append("=")
.append(value)
.append(value == null ? "" : " (" + value.getClass().getSimpleName() + ")")
.append(value == null ? "" : " (" + data.get(key).getClass().getSimpleName() + ")")
.append("\r\n");
}
i(stringBuilder.toString());