Let config keys log the name

This commit is contained in:
Misagh Moayyed 2016-09-07 15:31:39 +04:30
parent 13fa0d0a0e
commit a1f85b9eb3
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();
}
}