summaryrefslogtreecommitdiff
path: root/modules/CIAO/DAnCE/Plan_Launcher/Plan_Launcher_Module.cpp
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2009-07-10 19:39:06 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2009-07-10 19:39:06 +0000
commitdd1597eb9737729e49af21c194fbfc053ea7b601 (patch)
tree419e0e50cfb3b6469d5dee652e80788c51c97799 /modules/CIAO/DAnCE/Plan_Launcher/Plan_Launcher_Module.cpp
parent8353a0a3b0379d85e67d910ffe5fe1f25c74ce04 (diff)
downloadATCD-dd1597eb9737729e49af21c194fbfc053ea7b601.tar.gz
Fri Jul 10 19:35:33 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
Diffstat (limited to 'modules/CIAO/DAnCE/Plan_Launcher/Plan_Launcher_Module.cpp')
-rw-r--r--modules/CIAO/DAnCE/Plan_Launcher/Plan_Launcher_Module.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/CIAO/DAnCE/Plan_Launcher/Plan_Launcher_Module.cpp b/modules/CIAO/DAnCE/Plan_Launcher/Plan_Launcher_Module.cpp
index a1a58e407c3..fa07782f010 100644
--- a/modules/CIAO/DAnCE/Plan_Launcher/Plan_Launcher_Module.cpp
+++ b/modules/CIAO/DAnCE/Plan_Launcher/Plan_Launcher_Module.cpp
@@ -23,9 +23,9 @@ DAnCE_Plan_Launcher_Module::create_object (CORBA::ORB_ptr orb,
{
try
{
- DANCE_DEBUG ((LM_TRACE, DLINFO "DAnCE_Plan_Launcher_Module::create_object - "
- "Creating Plan Launcher object.\n"));
-
+ DANCE_DEBUG ((LM_TRACE, DLINFO ACE_TEXT("DAnCE_Plan_Launcher_Module::create_object - ")
+ ACE_TEXT("Creating Plan Launcher object.")));
+
Plan_Launcher_Impl pl (orb, argc, argv);
pl.execute();
}
@@ -34,19 +34,19 @@ DAnCE_Plan_Launcher_Module::create_object (CORBA::ORB_ptr orb,
}
catch (const Plan_Launcher_Base_Impl::Deployment_Failure& e)
{
- DANCE_ERROR ((LM_ERROR, DLINFO "DAnCE_Plan_Launcher_Module::create_object - "
- "Error : %C.\n", e.error_.c_str()));
+ DANCE_ERROR ((LM_ERROR, DLINFO ACE_TEXT("DAnCE_Plan_Launcher_Module::create_object - ")
+ ACE_TEXT("Error : %C.\n"), e.error_.c_str()));
}
catch (const CORBA::Exception& ex)
{
- DANCE_ERROR ((LM_ERROR, DLINFO "DAnCE_Plan_Launcher_Module::create_object - "
- "Caught CORBA Exception %C",
+ DANCE_ERROR ((LM_ERROR, DLINFO ACE_TEXT("DAnCE_Plan_Launcher_Module::create_object - ")
+ ACE_TEXT("Caught CORBA Exception %C"),
ex._info ().c_str ()));
}
catch (...)
{
- DANCE_ERROR ((LM_ERROR, DLINFO "DAnCE_Plan_Launcher_Module::create_object - "
- "Unknown exception.\n"));
+ DANCE_ERROR ((LM_ERROR, DLINFO ACE_TEXT("DAnCE_Plan_Launcher_Module::create_object - ")
+ ACE_TEXT("Unknown exception.\n")));
}
return CORBA::Object::_nil ();
}