summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhuangming <huangminghuang@users.noreply.github.com>2003-12-08 03:38:30 +0000
committerhuangming <huangminghuang@users.noreply.github.com>2003-12-08 03:38:30 +0000
commit64e3f33d8b3d70e8098dbc28f0e069b774953a75 (patch)
tree873ae2a43b30ede547f2e1dab123bbacdba3cee9
parent32f4849536af164ee0b7f47507bc5ac41214d003 (diff)
downloadATCD-64e3f33d8b3d70e8098dbc28f0e069b774953a75.tar.gz
*** empty log message ***
-rw-r--r--TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/AMI_Primary_Replication_Strategy.cpp1
-rw-r--r--TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp2
2 files changed, 2 insertions, 1 deletions
diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/AMI_Primary_Replication_Strategy.cpp b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/AMI_Primary_Replication_Strategy.cpp
index ac687b61bd9..6c3bcd88a23 100644
--- a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/AMI_Primary_Replication_Strategy.cpp
+++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/AMI_Primary_Replication_Strategy.cpp
@@ -47,6 +47,7 @@ int AMI_Primary_Replication_Strategy::release (void)
int AMI_Primary_Replication_Strategy::init()
{
+ TAO_FTRTEC::Log(3, "AMI_Primary_Replication_Strategy::init\n");
return RT_Task::activate(this);
}
diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp b/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp
index 30aa40a239c..570ccf9d170 100644
--- a/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp
+++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp
@@ -42,7 +42,7 @@ namespace TAO_FTRTEC {
int time_in_usec = result.sec()*1000000+result.usec();
int n = ACE_OS::snprintf(now, buffer-now+sizeof(buffer),
- "%s %d , start = %d.%10d, stop = %d.%10d\n",
+ "%s %d , start = %d.%06d, stop = %d.%06d\n",
msg_, time_in_usec, start_time_.sec(), start_time_.usec(),
stop.sec(), stop.usec());
now+=n;