summaryrefslogtreecommitdiff
path: root/TAO/tests/ORB_Local_Config/Bug_2612
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2007-01-25 18:17:52 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2007-01-25 18:17:52 +0000
commit528474110ea3692de384e7d5e906b8e021eae7ad (patch)
tree08a8a649c90559cf5b2228c1caad15515902613e /TAO/tests/ORB_Local_Config/Bug_2612
parentbae2cc6fda8827396cadd4e4c64d1c4c1145cb44 (diff)
downloadATCD-528474110ea3692de384e7d5e906b8e021eae7ad.tar.gz
ChangeLogTag: Thu Jan 25 17:39:59 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/tests/ORB_Local_Config/Bug_2612')
-rw-r--r--TAO/tests/ORB_Local_Config/Bug_2612/DllOrb.cpp14
1 files changed, 6 insertions, 8 deletions
diff --git a/TAO/tests/ORB_Local_Config/Bug_2612/DllOrb.cpp b/TAO/tests/ORB_Local_Config/Bug_2612/DllOrb.cpp
index fe629b8d48d..750c68132fe 100644
--- a/TAO/tests/ORB_Local_Config/Bug_2612/DllOrb.cpp
+++ b/TAO/tests/ORB_Local_Config/Bug_2612/DllOrb.cpp
@@ -101,8 +101,7 @@ int DllOrb::init (int argc, char *argv[])
}
catch(CORBA::Exception& ex)
{
- ACE_PRINT_EXCEPTION (ex,
- ACE_TEXT ("(%P|%t) init failed:"));
+ ex._tao_print_exception (ACE_TEXT ("(%P|%t) init failed:"));
return -1;
}
catch(...)
@@ -144,8 +143,7 @@ int DllOrb::fini (void)
}
catch(CORBA::Exception& ex)
{
- ACE_PRINT_EXCEPTION (ex,
- ACE_TEXT ("(%P|%t) fini failed:"));
+ ex._tao_print_exception (ACE_TEXT ("(%P|%t) fini failed:"));
return -1;
}
catch(...)
@@ -171,8 +169,9 @@ int DllOrb::fini (void)
}
catch(CORBA::Exception& ex)
{
- ACE_PRINT_EXCEPTION (ex,
- ACE_TEXT ("(%P|%t) init failed to destroy the orb:"));
+ ex._tao_print_exception (
+ ACE_TEXT (
+ "(%P|%t) init failed to destroy the orb:"));
return -1;
}
@@ -219,8 +218,7 @@ int DllOrb::svc (void)
}
catch(CORBA::Exception& ex)
{
- ACE_PRINT_EXCEPTION (ex,
- ACE_TEXT ("(%P|%t) svc - orb->run() failed:"));
+ ex._tao_print_exception (ACE_TEXT ("(%P|%t) svc - orb->run() failed:"));
return -1;
}
catch(...)