in runAs-agent/src/main/java/jetbrains/buildServer/runAs/agent/AccessControlEntry.java [65:74]
public String toString() {
return LogUtils.toString(
"ACE",
new LinkedHashMap<String, Object>() {{
this.put("File", myFile);
this.put("Account", myAccount);
this.put("Permissions", LogUtils.toString(myPermissions));
this.put("Scope", myScope);
}});
}