mirror of https://github.com/aria2/aria2
2010-03-12 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Changed log level from error to info for DHT message send error. * src/DHTMessageDispatcherImpl.ccpull/1/head
parent
7bbc5769a5
commit
7d8044ef10
|
@ -1,3 +1,8 @@
|
||||||
|
2010-03-12 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||||
|
|
||||||
|
Changed log level from error to info for DHT message send error.
|
||||||
|
* src/DHTMessageDispatcherImpl.cc
|
||||||
|
|
||||||
2010-03-12 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
2010-03-12 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||||
|
|
||||||
Inspect all xt in magnet to find urn:btih.
|
Inspect all xt in magnet to find urn:btih.
|
||||||
|
|
|
@ -83,7 +83,8 @@ DHTMessageDispatcherImpl::sendMessage(const SharedHandle<DHTMessageEntry>& entry
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} catch(RecoverableException& e) {
|
} catch(RecoverableException& e) {
|
||||||
_logger->error("Failed to send message: %s", e, entry->_message->toString().c_str());
|
_logger->info("Failed to send message: %s",
|
||||||
|
e, entry->_message->toString().c_str());
|
||||||
// Add message to DHTMessageTracker with timeout 0 to treat it as
|
// Add message to DHTMessageTracker with timeout 0 to treat it as
|
||||||
// time out. Without this, we have untracked message and some of
|
// time out. Without this, we have untracked message and some of
|
||||||
// DHTTask(such as DHTAbstractNodeLookupTask) don't finish
|
// DHTTask(such as DHTAbstractNodeLookupTask) don't finish
|
||||||
|
|
Loading…
Reference in New Issue