summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2011-08-08 11:00:52 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2011-08-08 11:00:52 +0000
commitebc857b7235007891dea1336e44cd9fff223f7b1 (patch)
tree8765a66face55bfd78c85caf9d388a4dcdc41304
parent35f7d47d6705ed817042ebdca9ba456f9d056d3f (diff)
downloadATCD-ebc857b7235007891dea1336e44cd9fff223f7b1.tar.gz
Mon Aug 8 10:59:50 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* connectors/dds4ccm/impl/ndds/TypeSupport.cpp: Improved logging
-rw-r--r--CIAO/ChangeLog5
-rw-r--r--CIAO/connectors/dds4ccm/impl/ndds/TypeSupport.cpp12
2 files changed, 11 insertions, 6 deletions
diff --git a/CIAO/ChangeLog b/CIAO/ChangeLog
index 4dd60d3b004..308cd2cbb69 100644
--- a/CIAO/ChangeLog
+++ b/CIAO/ChangeLog
@@ -1,3 +1,8 @@
+Mon Aug 8 10:59:50 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * connectors/dds4ccm/impl/ndds/TypeSupport.cpp:
+ Improved logging
+
Mon Aug 8 10:57:32 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* connectors/dds4ccm/idl/ndds/ndds_dcps.idl:
diff --git a/CIAO/connectors/dds4ccm/impl/ndds/TypeSupport.cpp b/CIAO/connectors/dds4ccm/impl/ndds/TypeSupport.cpp
index 8788e98ff73..802cc6fb2c5 100644
--- a/CIAO/connectors/dds4ccm/impl/ndds/TypeSupport.cpp
+++ b/CIAO/connectors/dds4ccm/impl/ndds/TypeSupport.cpp
@@ -181,13 +181,13 @@ namespace CIAO
{
DDS4CCM_DEBUG (DDS4CCM_LOG_LEVEL_ACTION, (LM_INFO, DDS4CCM_INFO
"DDS_TypeSupport_i::register_type - "
- "Won't register factory for type %C since it already exist\n",
+ "Won't register factory for type <%C> since it already exist\n",
type));
return false;
}
DDS4CCM_DEBUG (DDS4CCM_LOG_LEVEL_ACTION, (LM_INFO, DDS4CCM_INFO
"DDS_TypeSupport_i::register_type - "
- "Registered factory for type %C and participant <%@>\n",
+ "Registered factory for type <%C> and participant <%@>\n",
type, dp));
return register_factory_i (type, f, dp);
@@ -203,7 +203,7 @@ namespace CIAO
DDS4CCM_DEBUG (DDS4CCM_LOG_LEVEL_ACTION, (LM_INFO, DDS4CCM_INFO
"DDS_TypeSupport_i::unregister_type - "
- "Unregistered factory for type %C and participant <%@>\n",
+ "Unregistered factory for type <%C> and participant <%@>\n",
type, dp));
return f;
}
@@ -229,7 +229,7 @@ namespace CIAO
DDS4CCM_ERROR (DDS4CCM_LOG_LEVEL_ERROR, (LM_ERROR, DDS4CCM_INFO
"DDS_TypeSupport_i::create_datawriter - "
- "Error creating DDSDataWriter for type %C\n", type));
+ "Error creating DDSDataWriter for type <%C>\n", type));
return ::DDS::DataWriter::_nil ();
}
@@ -247,14 +247,14 @@ namespace CIAO
{
DDS4CCM_DEBUG (DDS4CCM_LOG_LEVEL_ACTION, (LM_INFO, DDS4CCM_INFO
"DDS_TypeSupport_i::create_datareader - "
- "Created DDSDataReader for type %C\n", type));
+ "Created DDSDataReader for type <%C>\n", type));
return f->create_datareader (dr, dp, sub);
}
DDS4CCM_ERROR (DDS4CCM_LOG_LEVEL_ERROR, (LM_ERROR, DDS4CCM_INFO
"DDS_TypeSupport_i::create_datareader - "
- "Error creating DDSDataReader for type %C\n", type));
+ "Error creating DDSDataReader for type <%C>\n", type));
return ::DDS::DataReader::_nil ();
}