From: Eduardo Ramos Testillano Date: Mon, 20 Jun 2016 01:27:55 +0000 (+0200) Subject: Skip bad decoded frames, but not exit X-Git-Tag: REFACTORING_TESTING_LIBRARY~7 X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=commitdiff_plain;h=97a93101fb874a3237083d72c6d6f8c8df8dcfba Skip bad decoded frames, but not exit --- diff --git a/example/diameter/batchConverter/main.cpp b/example/diameter/batchConverter/main.cpp index 12265cf..85f7948 100644 --- a/example/diameter/batchConverter/main.cpp +++ b/example/diameter/batchConverter/main.cpp @@ -73,7 +73,8 @@ void decodeDataBlock(const anna::DataBlock &db/*, unsigned int & detectedApplica G_codecMsg.clear(); G_codecMsg.decode(db); } catch(RuntimeException &ex) { - _exit(ex.asString()); + std::cerr << ex.asString() << std::endl << std::endl; + //_exit(ex.asString()); } }