securis/src/main/java/net/curisit/securis/db/ApplicationMetadata.java
.. .. @@ -126,4 +126,10 @@ 126 126 return key.hashCode() + (application == null ? 0 : application.hashCode()); 127 127 } 128 128 129 + @Override130 + public String toString() {131 +132 + return String.format("ApplicationMetadata (%s - %s)", this.application == null ? null : application.getId(), this.key);133 + }134 +129 135 }