Added attachment logging

This commit is contained in:
M66B
2019-05-16 20:44:42 +02:00
parent 87bb343518
commit 9f756079b1
2 changed files with 23 additions and 5 deletions

View File

@@ -160,6 +160,11 @@ public class EntityAttachment {
@NonNull
@Override
public String toString() {
return (this.name + " type=" + this.type + " disposition=" + this.disposition + " cid=" + this.cid + " size=" + this.size);
return (this.name +
" type=" + this.type +
" disposition=" + this.disposition +
" cid=" + this.cid +
" encryption=" + this.encryption +
" size=" + this.size);
}
}