mirror of https://github.com/apache/druid.git
Add toString for better logging
This commit is contained in:
parent
92ebe69fd9
commit
1b6137504c
|
@ -101,4 +101,12 @@ public class UnionDataSource implements DataSource
|
||||||
{
|
{
|
||||||
return dataSources.hashCode();
|
return dataSources.hashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString()
|
||||||
|
{
|
||||||
|
return "UnionDataSource{" +
|
||||||
|
"dataSources=" + dataSources +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue