Add toString for better logging

This commit is contained in:
nishantmonu51 2014-05-01 21:32:27 +05:30
parent 92ebe69fd9
commit 1b6137504c
1 changed files with 8 additions and 0 deletions

View File

@ -101,4 +101,12 @@ public class UnionDataSource implements DataSource
{
return dataSources.hashCode();
}
@Override
public String toString()
{
return "UnionDataSource{" +
"dataSources=" + dataSources +
'}';
}
}