System.out.println("***makeFromCatalog "+catURL);
long startTime = System.currentTimeMillis();
FmrcInventory fmrCollection = new FmrcInventory(fmrcDefinitionPath, collectionName);
CatalogCrawler crawler = new CatalogCrawler(CatalogCrawler.USE_ALL_DIRECT, false,
new MyListener(fmrCollection, maxDatasets, mode, cache));
crawler.crawl(catURL, null, System.out, null);
fmrCollection.finish();
if (debugTiming) {
long took = System.currentTimeMillis() - startTime;
System.out.println("that took = "+took+" msecs");