summaryrefslogtreecommitdiff
path: root/examples/APG/Logging/Use_Ostream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/APG/Logging/Use_Ostream.cpp')
-rw-r--r--examples/APG/Logging/Use_Ostream.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/APG/Logging/Use_Ostream.cpp b/examples/APG/Logging/Use_Ostream.cpp
index f5665fbfd2e..54ab19170db 100644
--- a/examples/APG/Logging/Use_Ostream.cpp
+++ b/examples/APG/Logging/Use_Ostream.cpp
@@ -9,11 +9,10 @@ void foo (void);
int ACE_TMAIN (int, ACE_TCHAR *[])
{
- ACE_TRACE (ACE_TEXT ("main"));
+ ACE_TRACE ("main");
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%IHi Mom\n")));
-
/* Alternatively, you can use the set_flags() method to do the same
thing after the singleton has been created:
*/
@@ -33,7 +32,7 @@ int ACE_TMAIN (int, ACE_TCHAR *[])
void foo (void)
{
- ACE_TRACE (ACE_TEXT ("foo"));
+ ACE_TRACE ("foo");
ACE_DEBUG ((LM_INFO, ACE_TEXT ("%IHowdy Pardner\n")));
}