mirror of https://github.com/aria2/aria2
2009-03-07 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Added log message in setStatusInternal() * src/ServerStat.ccpull/1/head
parent
91f15c4213
commit
93b7ffc4f7
|
@ -1,3 +1,8 @@
|
|||
2009-03-07 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||
|
||||
Added log message in setStatusInternal()
|
||||
* src/ServerStat.cc
|
||||
|
||||
2009-03-07 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||
|
||||
Call ServerStat::setError() in AbstractCommand::onAbort() to
|
||||
|
|
|
@ -207,6 +207,9 @@ void ServerStat::setStatus(const std::string& status)
|
|||
|
||||
void ServerStat::setStatusInternal(STATUS status)
|
||||
{
|
||||
_logger->debug("ServerStat: set status %s for %s (%s)",
|
||||
STATUS_STRING[status].c_str(),
|
||||
_hostname.c_str(), _protocol.c_str());
|
||||
_status = status;
|
||||
_lastUpdated.reset();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue