Add toString for LookupConfig (#2935)

* Helps with operations and getting where the snapshot dir is
This commit is contained in:
Charles Allen 2016-05-09 18:20:00 -07:00 committed by Slim
parent b8af84d1fc
commit a31348450f
1 changed files with 7 additions and 0 deletions

View File

@ -62,4 +62,11 @@ public class LookupConfig
}
@Override
public String toString()
{
return "LookupConfig{" +
"snapshotWorkingDir='" + getSnapshotWorkingDir() + '\'' +
'}';
}
}