1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-12 11:01:17 +03:00

Commented some debugging output

This commit is contained in:
Patrick LeBlanc
2019-03-07 08:54:48 -06:00
parent 9bd6ddac1b
commit 1627f46ee5
2 changed files with 3 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ Cache::Cache()
syslog(LOG_CRIT, "Cache/cache_size is not a number");
throw runtime_error("Please set Cache/cache_size to a number");
}
cout << "Cache got cache size " << maxCacheSize << endl;
//cout << "Cache got cache size " << maxCacheSize << endl;
prefix = conf->getValue("Cache", "path");
if (prefix.empty())
@@ -49,7 +49,7 @@ Cache::Cache()
syslog(LOG_CRIT, "Failed to create %s, got: %s", prefix.string().c_str(), e.what());
throw e;
}
cout << "Cache got prefix " << prefix << endl;
//cout << "Cache got prefix " << prefix << endl;
downloader.setDownloadPath(prefix.string());
/* todo: populate structures with existing files in the cache path */