Let config keys log the name

This commit is contained in:
Misagh Moayyed 2016-09-07 15:31:39 +04:30
parent 7cb5380e75
commit 9b71825e1a
1 changed files with 5 additions and 0 deletions

View File

@ -60,4 +60,9 @@ public final class ConfigurationKey<E> {
public E getDefaultValue() {
return this.defaultValue;
}
@Override
public String toString() {
return getName();
}
}