mirror of https://github.com/apache/druid.git
Add NamespaceLookupExtractorFactory.toString() (#4606)
This commit is contained in:
parent
2005c5532f
commit
5929066dfb
|
@ -238,4 +238,15 @@ public class NamespaceLookupExtractorFactory implements LookupExtractorFactory
|
||||||
{
|
{
|
||||||
return cacheScheduler;
|
return cacheScheduler;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString()
|
||||||
|
{
|
||||||
|
return "NamespaceLookupExtractorFactory{" +
|
||||||
|
"extractionNamespace=" + extractionNamespace +
|
||||||
|
", firstCacheTimeout=" + firstCacheTimeout +
|
||||||
|
", injective=" + injective +
|
||||||
|
", extractorID='" + extractorID + '\'' +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue