summaryrefslogtreecommitdiff
path: root/ACE/examples/Misc/test_dump.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Misc/test_dump.h')
-rw-r--r--ACE/examples/Misc/test_dump.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/examples/Misc/test_dump.h b/ACE/examples/Misc/test_dump.h
index 869c68ce1f2..9945894eb5b 100644
--- a/ACE/examples/Misc/test_dump.h
+++ b/ACE/examples/Misc/test_dump.h
@@ -16,7 +16,7 @@ public:
~SOCK (void) { ACE_REMOVE_OBJECT; }
void dump (void) const {
- ACE_OS::fprintf (stderr, "hello from SOCK = %@\n", this);
+ ACE_DEBUG ((LM_DEBUG, "hello from SOCK = %@\n", this));
}
// ...
@@ -29,7 +29,7 @@ public:
~SOCK_Acceptor (void) { ACE_REMOVE_OBJECT; }
void dump (void) const {
- ACE_OS::fprintf (stderr, "hello from SOCK_Acceptor = %@\n", this);
+ ACE_DEBUG ((LM_DEBUG, "hello from SOCK_Acceptor = %@\n", this));
}
// ...
@@ -42,7 +42,7 @@ public:
~SOCK_Stream (void) { ACE_REMOVE_OBJECT; }
void dump (void) const {
- ACE_OS::fprintf (stderr, "hello from SOCK_Stream = %@\n", this);
+ ACE_DEBUG ((LM_DEBUG, "hello from SOCK_Stream = %@\n", this));
}
// ...