瀏覽代碼

Log warn if unknown option is found in config file or -i file

Tatsuhiro Tsujikawa 13 年之前
父節點
當前提交
08bed3f77f
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      src/OptionParser.cc

+ 4 - 0
src/OptionParser.cc

@@ -52,6 +52,8 @@
 #include "error_code.h"
 #include "prefs.h"
 #include "UnknownOptionException.h"
+#include "LogFactory.h"
+#include "fmt.h"
 
 namespace aria2 {
 
@@ -237,6 +239,8 @@ void OptionParser::parse(Option& option, std::istream& is) const
     const OptionHandler* handler = find(pref);
     if(handler) {
       handler->parse(option, std::string(nv.second.first, nv.second.second));
+    } else {
+      A2_LOG_WARN(fmt("Unknown option: %s", line.c_str()));
     }
   }
 }