summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp b/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp
index e912ac6b04e..077ca0b1120 100644
--- a/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp
+++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp
@@ -33,9 +33,14 @@ namespace TAO_FTRTEC {
TimeLogger::~TimeLogger()
{
- ACE_Time_Value result = ACE_OS::gettimeofday () - start_time_;
+ ACE_Time_Value stop = ACE_OS::gettimeofday ();
+ ACE_Time_Value result = stop - start_time_;
+
int time_in_usec = result.sec()*1000000+result.usec();
- int n = ACE_OS::snprintf(now, buffer-now+sizeof(buffer), "%s %d\n", msg_, time_in_usec);
+ int n = ACE_OS::snprintf(now, buffer-now+sizeof(buffer),
+ "%s %d , start = %d.%d, stop = %d.%d\n",
+ msg_, time_in_usec, start_time_.sec(), start_time_.usec(),
+ stop.sec(), stop.usec());
now+=n;
}