CR
[anna.git] / example / diameter / pcapDecoder / main.cpp
index d05a0e9..d3f6f4e 100644 (file)
@@ -349,14 +349,15 @@ int main(int argc, char **argv) {
   //check command line arguments
   if(argc < 3) {
     std::string msg = "Usage: "; msg += exec;
-    msg += " <stacks> <input file> [--no-validation] [--ignore-flags]\n\n";
+    msg += " <stacks> <input file> [--no-validation] [--ignore-flags] [--debug]\n\n";
     msg += "       stacks:                  <id1,dictionary1#id2,dictionary2#...#idN,dictionaryN>\n";
     msg += "                                This is a list of #-separated stacks defined by a comma-separated pair <application-id,xml dictionary pathfile>\n";
     msg += "                                If only one stack is provided, application-id could be omitted and then, all the messages will be decoded with the\n";
     msg += "                                dictionary regardless the value of the application-id (the stack will be registered with id=0).\n";
     msg += "       Input file:              normally a pcap file, but hexadecimal content (colons allowed) can also be decoded (use '.hex' extension).\n";
     msg += "       --no-validation:         no validation is performed.\n";
-    msg += "       --ignore-flags:          wrong flags regarding dictionary are ignored in xml representation.";
+    msg += "       --ignore-flags:          wrong flags regarding dictionary are ignored in xml representation.\n";
+    msg += "       --debug:                 activates debug level traces (warning by default).";
     _exit(msg);
   }
 
@@ -372,7 +373,8 @@ int main(int argc, char **argv) {
 
   bool no_validation = (optionals.find("--no-validation") != std::string::npos);
   bool ignore_flags = (optionals.find("--ignore-flags") != std::string::npos);
-  Logger::setLevel(Logger::Warning);
+  bool debug = (optionals.find("--debug") != std::string::npos);
+  Logger::setLevel(debug ? Logger::Debug:Logger::Warning);
   Logger::initialize(execBN.c_str(), new TraceWriter(filetrace.c_str(), 2048000));
   G_codecEngine = new anna::diameter::codec::Engine();
   anna::diameter::stack::Engine &stackEngine =