summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-07-21 11:31:37 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-07-21 11:31:37 +0200
commit5eb19d9799db38ba5d58ca36f02b9c87de7e88fd (patch)
treec6caf449844ce10242ab2b521f66221ca3ddad79
parent5dff5cebea9fab9737204ce549635ea4081fa2f9 (diff)
downloadATCD-5eb19d9799db38ba5d58ca36f02b9c87de7e88fd.tar.gz
Fixed incorrect logging
* TAO/tests/Param_Test/except.cpp:
-rw-r--r--TAO/tests/Param_Test/except.cpp20
1 files changed, 9 insertions, 11 deletions
diff --git a/TAO/tests/Param_Test/except.cpp b/TAO/tests/Param_Test/except.cpp
index f18ccba2219..49084a4b258 100644
--- a/TAO/tests/Param_Test/except.cpp
+++ b/TAO/tests/Param_Test/except.cpp
@@ -50,9 +50,7 @@ Test_Exception::dii_req_invoke (CORBA::Request_ptr req)
req->set_return_type (CORBA::_tc_ulong);
- req->exceptions ()->add (CORBA::TypeCode::_duplicate (
- Param_Test::_tc_Ooops
- ));
+ req->exceptions ()->add (CORBA::TypeCode::_duplicate (Param_Test::_tc_Ooops));
req->invoke ();
@@ -143,7 +141,7 @@ Test_Exception::dii_req_invoke (CORBA::Request_ptr req)
if (TAO_debug_level > 0)
{
ACE_DEBUG ((LM_DEBUG,
- "Test_Exception::run_sii_test - "
+ "Test_Exception::dii_req_invoke - "
"caught NO_MEMORY system exception - "
"expected known user exception\n"));
}
@@ -154,7 +152,7 @@ Test_Exception::dii_req_invoke (CORBA::Request_ptr req)
if (TAO_debug_level > 0)
{
ACE_DEBUG ((LM_DEBUG,
- "Test_Exception::run_sii_test - "
+ "Test_Exception::dii_req_invoke - "
"caught NO_MEMORY system exception - "
"expected UNKNOWN exception\n"));
}
@@ -165,8 +163,8 @@ Test_Exception::dii_req_invoke (CORBA::Request_ptr req)
if (TAO_debug_level > 0)
{
ACE_DEBUG ((LM_DEBUG,
- "Test_Exception::run_sii_test - "
- "caught unexpected uknown exception\n"));
+ "Test_Exception::dii_req_invoke - "
+ "caught unexpected unknown exception\n"));
}
}
}
@@ -194,7 +192,7 @@ Test_Exception::dii_req_invoke (CORBA::Request_ptr req)
if (TAO_debug_level > 0)
{
ACE_DEBUG ((LM_DEBUG,
- "Test_Exception::run_sii_test - "
+ "Test_Exception::dii_req_invoke - "
"caught unknown exception - "
"expected known user exception\n"));
}
@@ -205,7 +203,7 @@ Test_Exception::dii_req_invoke (CORBA::Request_ptr req)
if (TAO_debug_level > 0)
{
ACE_DEBUG ((LM_DEBUG,
- "Test_Exception::run_sii_test - "
+ "Test_Exception::dii_req_invoke - "
"caught unknown exception - "
"expected NO_MEMORY system exception\n"));
}
@@ -216,8 +214,8 @@ Test_Exception::dii_req_invoke (CORBA::Request_ptr req)
if (TAO_debug_level > 0)
{
ACE_DEBUG ((LM_DEBUG,
- "Test_Exception::run_sii_test - "
- "caught unexpected uknown exception\n"));
+ "Test_Exception::dii_req_invoke - "
+ "caught unexpected unknown exception\n"));
}
}
}