summaryrefslogtreecommitdiff
path: root/ACE/ace/Profile_Timer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Profile_Timer.cpp')
-rw-r--r--ACE/ace/Profile_Timer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Profile_Timer.cpp b/ACE/ace/Profile_Timer.cpp
index 2afafa3ef25..9bab2e538d7 100644
--- a/ACE/ace/Profile_Timer.cpp
+++ b/ACE/ace/Profile_Timer.cpp
@@ -6,7 +6,7 @@
# include "ace/Profile_Timer.inl"
#endif /* __ACE_INLINE__ */
-#include "ace/Log_Msg.h"
+#include "ace/Log_Category.h"
#include "ace/OS_NS_string.h"
#if defined (ACE_HAS_PRUSAGE_T)
@@ -49,7 +49,7 @@ ACE_Profile_Timer::ACE_Profile_Timer (void)
this->proc_handle_ = ACE_OS::open (buf, O_RDONLY, 0);
if (this->proc_handle_ == -1)
- ACE_ERROR ((LM_ERROR,
+ ACELIB_ERROR ((LM_ERROR,
ACE_TEXT ("%p\n"),
buf));
# elif defined (ACE_HAS_GETRUSAGE)
@@ -65,7 +65,7 @@ ACE_Profile_Timer::~ACE_Profile_Timer (void)
ACE_TRACE ("ACE_Profile_Timer::~ACE_Profile_Timer");
# if defined (ACE_HAS_PRUSAGE_T)
if (ACE_OS::close (this->proc_handle_) == -1)
- ACE_ERROR ((LM_ERROR,
+ ACELIB_ERROR ((LM_ERROR,
ACE_TEXT ("ACE_Profile_Timer::~ACE_Profile_Timer")));
# endif /* ACE_HAS_PRUSAGE_T */
}