summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-29 16:42:20 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-29 16:42:20 +0000
commit86adb58cd66561861157c658267384acb294de9c (patch)
treebb26de71c8cacb45a96be927157888c0b217fecc
parentcc0edc1ecdf5d261d721d89f19a1fcd15c1cc3eb (diff)
downloadATCD-86adb58cd66561861157c658267384acb294de9c.tar.gz
*** empty log message ***
-rw-r--r--TAO/CIAO/ciao/ComponentInstallation_Impl.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/TAO/CIAO/ciao/ComponentInstallation_Impl.cpp b/TAO/CIAO/ciao/ComponentInstallation_Impl.cpp
index 4c8c601316d..1c2dfa2a074 100644
--- a/TAO/CIAO/ciao/ComponentInstallation_Impl.cpp
+++ b/TAO/CIAO/ciao/ComponentInstallation_Impl.cpp
@@ -50,8 +50,10 @@ CIAO::ComponentInstallation_Impl::init (const char *fname,
ACE_Ini_ImpExp import (*config);
if (import.import_config (fname) != 0)
- ACE_THROW_RETURN (CORBA::INTERNAL (), -1);
-
+ {
+ ACE_DEBUG ((LM_ERROR, "Unable to import from installation datafile: %s\n", fname));
+ ACE_THROW_RETURN (CORBA::INTERNAL (), -1);
+ }
this->installation_ = config.release ();
return 0;