Kaynağa Gözat

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

Tatsuhiro Tsujikawa 13 yıl önce
ebeveyn
işleme
08bed3f77f
1 değiştirilmiş dosya ile 4 ekleme ve 0 silme
  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()));
     }
   }
 }