diff --git a/src/Cache.cpp b/src/Cache.cpp index 3fa2049fc..81b8cdcd5 100644 --- a/src/Cache.cpp +++ b/src/Cache.cpp @@ -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 */ diff --git a/src/LocalStorage.cpp b/src/LocalStorage.cpp index 6e87fc1ea..7f9e4246f 100644 --- a/src/LocalStorage.cpp +++ b/src/LocalStorage.cpp @@ -15,7 +15,7 @@ namespace storagemanager LocalStorage::LocalStorage() { prefix = Config::get()->getValue("LocalStorage", "path"); - cout << "LS: got prefix " << prefix << endl; + //cout << "LS: got prefix " << prefix << endl; if (!is_directory(prefix)) { try