summaryrefslogtreecommitdiff
path: root/CIAO/ciao
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2014-03-25 00:41:59 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2014-03-25 00:41:59 +0000
commit068cbe293f6d0c86ab671df071e7cd8420a92f54 (patch)
tree57c49a66aa3ce9427f410add4fc51726bbbe6681 /CIAO/ciao
parent31e3ff21a25cb74904842253dea49d1b13bf3818 (diff)
downloadATCD-068cbe293f6d0c86ab671df071e7cd8420a92f54.tar.gz
Tue Mar 25 00:42:50 UTC 2014 Johnny Willemsen <jwillemsen@remedy.nl>
* ciao/Deployment/Interceptors/Deployment_Interceptors.cpp: Fixed compile errors with unicode enabled
Diffstat (limited to 'CIAO/ciao')
-rw-r--r--CIAO/ciao/Deployment/Interceptors/Deployment_Interceptors.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/CIAO/ciao/Deployment/Interceptors/Deployment_Interceptors.cpp b/CIAO/ciao/Deployment/Interceptors/Deployment_Interceptors.cpp
index bf8093254c3..4c4e60d0bce 100644
--- a/CIAO/ciao/Deployment/Interceptors/Deployment_Interceptors.cpp
+++ b/CIAO/ciao/Deployment/Interceptors/Deployment_Interceptors.cpp
@@ -71,7 +71,7 @@ namespace CIAO
if (!(reference >>= CORBA::Any::to_object (obj)))
{
- CIAO_ERROR (1, (LM_WARNING, CLINFO
+ CIAO_ERROR (1, (LM_ERROR, CLINFO
"CIAO_StoreReferences_i::post_install - "
"Unable to extract instance reference from Any\n"));
}
@@ -125,11 +125,11 @@ namespace CIAO
std::string result;
DAnCE::Utility::stringify_exception_from_any (exception_thrown,
result);
- CIAO_ERROR (3 , (LM_WARNING, CLINFO
- ACE_TEXT ("CIAO_StoreReferences_i::post_remove - ")
- ACE_TEXT ("Received exception while unregistering ")
- ACE_TEXT ("for instance ")
- ACE_TEXT ("<%C>:<%C>\n"),
+ CIAO_ERROR (3 , (LM_ERROR, CLINFO
+ "CIAO_StoreReferences_i::post_remove - "
+ "Received exception while unregistering "
+ "for instance "
+ "<%C>:<%C>\n",
plan.instance[instanceRef].name.in (),
result.c_str ()));
return;