public AbstractCursor<KeyValue<Row>> find(DboTableMeta colFamily,
DirectCursor<byte[]> rowKeys, Cache realCache, int batchSize, BatchListener l, MetaLookup mgr) {
BatchListener list = l;
//NOTE: get the cache here before the below log statement which used to clear out the trhead local as it ends
//up doing a find through the cache layer that used to clear the thread local
Cache cache = CacheThreadLocal.getCache();
if(log.isInfoEnabled()) {
list = new LogBatchFetch("CF="+colFamily, l, batchSize, ScanType.FIND);
}