summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Property_Set.cpp
diff options
context:
space:
mode:
authormitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-04-12 22:47:02 +0000
committermitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-04-12 22:47:02 +0000
commit4763430ca49834f855cb538a5a867ae43a0a403e (patch)
tree51fd3bf65fca69b840033a5a5dd7d086c96a4194 /TAO/orbsvcs/orbsvcs/PortableGroup/PG_Property_Set.cpp
parent9d5564b342e794dc79bcf4ffe3a1381086b8d960 (diff)
downloadATCD-4763430ca49834f855cb538a5a867ae43a0a403e.tar.gz
ChangeLogTag: Fri Apr 12 22:41:43 UTC 2013 Adam Mitz <mitza@ociweb.com>
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/PortableGroup/PG_Property_Set.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_Property_Set.cpp17
1 files changed, 9 insertions, 8 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Property_Set.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Property_Set.cpp
index 5acf71e1773..c56076465b6 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Property_Set.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Property_Set.cpp
@@ -13,6 +13,7 @@
* @author Dale Wilson <wilson_d@ociweb.com>
*/
//=============================================================================
+#include "orbsvcs/Log_Macros.h"
#include "orbsvcs/PortableGroup/PG_Property_Set.h"
#include "tao/debug.h"
@@ -87,7 +88,7 @@ TAO::PG_Property_Set::decode (const PortableGroup::Properties & property_set)
{
if (TAO_debug_level > 3)
{
- ACE_ERROR ( (LM_ERROR,
+ ORBSVCS_ERROR ( (LM_ERROR,
"%n\n%T: Property_set: rebind failed.\n"
));
}
@@ -155,7 +156,7 @@ void TAO::PG_Property_Set::set_property (
{ // Value was not rebound.
if (TAO_debug_level > 3)
{
- ACE_ERROR ( (LM_ERROR,
+ ORBSVCS_ERROR ( (LM_ERROR,
"%n\n%T: Property_set: rebind failed.\n"
));
}
@@ -273,7 +274,7 @@ int TAO_PG::test_encode_decode ()
{
if (longResult != testLong)
{
- ACE_ERROR ( (LM_ERROR,
+ ORBSVCS_ERROR ( (LM_ERROR,
"%n\n%T: %s = %d expecting %d\n",
testLongKey,
(int)longResult,
@@ -284,7 +285,7 @@ int TAO_PG::test_encode_decode ()
}
else
{
- ACE_ERROR ( (LM_ERROR,
+ ORBSVCS_ERROR ( (LM_ERROR,
"%n\n%T: Can't find value for %s\n", testLongKey
));
result = 0;
@@ -295,7 +296,7 @@ int TAO_PG::test_encode_decode ()
{
if (0 != ACE_OS::strcmp (testString, stringResult))
{
- ACE_ERROR ( (LM_ERROR,
+ ORBSVCS_ERROR ( (LM_ERROR,
"%n\n%T: %s = \"%s\" expecting \"%s\"\n",
testStringKey,
(int)stringResult,
@@ -306,7 +307,7 @@ int TAO_PG::test_encode_decode ()
}
else
{
- ACE_ERROR ( (LM_ERROR,
+ ORBSVCS_ERROR ( (LM_ERROR,
"%n\n%T: Can't find value for %s\n", testStringKey
));
result = 0;
@@ -318,7 +319,7 @@ int TAO_PG::test_encode_decode ()
{
if (doubleResult != testDouble)
{
- ACE_ERROR ( (LM_ERROR,
+ ORBSVCS_ERROR ( (LM_ERROR,
"%n\n%T: %s = \"%f\" expecting \"%f\"\n",
testDoubleKey,
doubleResult,
@@ -329,7 +330,7 @@ int TAO_PG::test_encode_decode ()
}
else
{
- ACE_ERROR ( (LM_ERROR,
+ ORBSVCS_ERROR ( (LM_ERROR,
"%n\n%T: Can't find value for %s\n", testDoubleKey
));
result = 0;