mirror of https://github.com/apache/druid.git
Add toString for LookupConfig (#2935)
* Helps with operations and getting where the snapshot dir is
This commit is contained in:
parent
b8af84d1fc
commit
a31348450f
|
@ -62,4 +62,11 @@ public class LookupConfig
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString()
|
||||||
|
{
|
||||||
|
return "LookupConfig{" +
|
||||||
|
"snapshotWorkingDir='" + getSnapshotWorkingDir() + '\'' +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue