summaryrefslogtreecommitdiffstats
path: root/filedistribution
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-10-11 09:46:59 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2016-10-11 09:46:59 +0000
commit14e575490142d0d56e4630453f1f265ef1def961 (patch)
treeb4d88eef6bd51fa3de5c6a5ff3cca77734636f18 /filedistribution
parent2ee298acd43bd57d5fa9d7aca8ba5ac43926b90c (diff)
listen failure is just a warnig and no error.
Diffstat (limited to 'filedistribution')
-rw-r--r--filedistribution/src/vespa/filedistribution/distributor/filedownloader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/filedistribution/src/vespa/filedistribution/distributor/filedownloader.cpp b/filedistribution/src/vespa/filedistribution/distributor/filedownloader.cpp
index 38080e5239c..d1b99482388 100644
--- a/filedistribution/src/vespa/filedistribution/distributor/filedownloader.cpp
+++ b/filedistribution/src/vespa/filedistribution/distributor/filedownloader.cpp
@@ -400,7 +400,7 @@ void FileDownloader::runEventLoop() {
} catch (const ZKConnectionLossException & e) {
LOG(info, "Connection loss in downloader event loop, resuming. %s", e.what());
} catch (const vespalib::PortListenException & e) {
- LOG(error, "Failed listening to torrent port : %s", e.what());
+ LOG(warning, "Failed listening to torrent port : %s", e.what());
std::quick_exit(21);
}
}