summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set_T.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set_T.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set_T.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set_T.cpp
index 0b832320644..94631a3f23f 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set_T.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set_T.cpp
@@ -111,6 +111,11 @@ TAO_EC_ProxyPushSupplier_Set_Delayed<ACE_SYNCH_USE>::connected (
ACE_NEW (command,
TAO_EC_ProxyPushSupplier_Set::Connected_Command (this,
supplier));
+
+ ACE_DEBUG ((LM_DEBUG,
+ "EC (%P|%t) Delayed connection command = %x\n",
+ command));
+
this->command_queue_.enqueue_tail (command);
this->write_delay_++;
}
@@ -136,6 +141,9 @@ TAO_EC_ProxyPushSupplier_Set_Delayed<ACE_SYNCH_USE>::disconnected (
ACE_NEW (command,
TAO_EC_ProxyPushSupplier_Set::Disconnected_Command (this,
supplier));
+ ACE_DEBUG ((LM_DEBUG,
+ "EC (%P|%t) Delayed disconnection command = %x\n",
+ command));
this->command_queue_.enqueue_tail (command);
this->write_delay_++;
@@ -180,6 +188,10 @@ TAO_EC_ProxyPushSupplier_Set_Delayed<ACE_SYNCH_USE>::execute_delayed_operations
command->execute ();
+ ACE_DEBUG ((LM_DEBUG,
+ "EC (%P|%t) Executed delayed command = %x\n",
+ command));
+
delete command;
}
}