Minor internal changes

- Fix log statement to include expected value
- Change access level to method
This commit is contained in:
Max Dor
2019-05-18 01:57:40 +02:00
parent cd890d114a
commit f16f184253

View File

@@ -79,7 +79,7 @@ public class IdentityServerUtils {
JsonElement el = parser.parse(IOUtils.toString(res.getEntity().getContent(), StandardCharsets.UTF_8));
if (!el.isJsonObject()) {
log.debug("IS {} did not send back an empty JSON object as per spec, not a valid IS");
log.debug("IS {} did not send back an empty JSON object as per spec, not a valid IS", remote);
return false;
}
@@ -90,7 +90,7 @@ public class IdentityServerUtils {
}
}
public static String getSrvRecordName(String domain) {
private static String getSrvRecordName(String domain) {
return "_matrix-identity._tcp." + domain;
}