소스 검색

Merge pull request #885 from aria2/notice-log-level-redirection-uri

Log directed URI in notice log level
Tatsuhiro Tsujikawa 8 년 전
부모
커밋
e441cf0575
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/HttpResponse.cc

+ 2 - 2
src/HttpResponse.cc

@@ -165,8 +165,8 @@ void HttpResponse::processRedirect()
         cuid_, req->getCurrentUri().c_str()));
   }
 
-  A2_LOG_INFO(fmt(MSG_REDIRECT, cuid_,
-                  httpRequest_->getRequest()->getCurrentUri().c_str()));
+  A2_LOG_NOTICE(fmt(MSG_REDIRECT, cuid_,
+                    httpRequest_->getRequest()->getCurrentUri().c_str()));
 }
 
 const std::string& HttpResponse::getRedirectURI() const