X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=source%2Fdiameter.comm%2FClientSession.cpp;h=34d29a5a180a0f13285b0505c1cb509c099a5ab2;hb=3e258840b15577cb8bda3cdedd0b9b88e16404b3;hp=71be8a3026e8eddd8e620a570a6fceb9d70e7475;hpb=858b6e049e795cc50a362e8e41dfaefe7106fd9f;p=anna.git diff --git a/source/diameter.comm/ClientSession.cpp b/source/diameter.comm/ClientSession.cpp index 71be8a3..34d29a5 100644 --- a/source/diameter.comm/ClientSession.cpp +++ b/source/diameter.comm/ClientSession.cpp @@ -1,4 +1,4 @@ -// ANNA - Anna is Not 'N' Anymore +// ANNA - Anna is Not Nothingness Anymore // // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo // @@ -582,7 +582,10 @@ throw(anna::RuntimeException) { } if(resultCode != helpers::base::AVPVALUES__Result_Code::DIAMETER_SUCCESS) { - LOGWARNING(anna::Logger::warning("Received CEA with non-success Result-Code. Unbinding connection.", ANNA_FILE_LOCATION)); + LOGWARNING( + std::string msg = anna::functions::asString("Received CEA with non-success Result-Code (%d). Unbinding connection.", resultCode); + anna::Logger::warning(msg, ANNA_FILE_LOCATION); + ); doUnbind = true; } else { setState(State::Bound); @@ -598,7 +601,10 @@ throw(anna::RuntimeException) { setWatchdogState(WatchdogState::WaitingTimerExpiration); if(resultCode != helpers::base::AVPVALUES__Result_Code::DIAMETER_SUCCESS) - LOGWARNING(anna::Logger::warning("Received DWA with non-success Result-Code... but ASSUME keep-alive is reached", ANNA_FILE_LOCATION)); + LOGWARNING( + std::string msg = anna::functions::asString("Received DWA with non-success Result-Code (%d)... but ASSUME keep-alive is reached", resultCode); + anna::Logger::warning(msg, ANNA_FILE_LOCATION); + ); if(a_state == State::Failover) { setState(State::Bound); @@ -619,7 +625,10 @@ throw(anna::RuntimeException) { if(a_state == State::WaitingDPA) { if(resultCode != helpers::base::AVPVALUES__Result_Code::DIAMETER_SUCCESS) { - LOGWARNING(anna::Logger::warning("Received DPA with non-success Result-Code. Ignoring and recovering Bound state", ANNA_FILE_LOCATION)); + LOGWARNING( + std::string msg = anna::functions::asString("Received DPA with non-success Result-Code (%d). Ignoring and recovering Bound state", resultCode); + anna::Logger::warning(msg, ANNA_FILE_LOCATION); + ); setState(State::Bound); } else { LOGWARNING(anna::Logger::warning("Received DPA With Result-Code = DIAMETER_SUCCESS. Disconnect now.", ANNA_FILE_LOCATION));