summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-08-05 11:36:54 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2018-08-05 11:36:54 +0200
commit87a6798992b9a811f0cc18518eb67d1ad2eacdb9 (patch)
treed451899a4076ac8280e6b9bb88fe835e466f12b1
parent4fd91ecdac261befa4210db0f40512e33a02b0a5 (diff)
downloadATCD-87a6798992b9a811f0cc18518eb67d1ad2eacdb9.tar.gz
When logging that we are a new ORB add the TAO version number so that we can easily determine what TAO version is being used
* TAO/tao/TAO_Internal.cpp:
-rw-r--r--TAO/tao/TAO_Internal.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/TAO/tao/TAO_Internal.cpp b/TAO/tao/TAO_Internal.cpp
index 90f81fdf77d..ea8146e67c2 100644
--- a/TAO/tao/TAO_Internal.cpp
+++ b/TAO/tao/TAO_Internal.cpp
@@ -415,8 +415,9 @@ TAO::ORB::open_services (ACE_Intrusive_Auto_Ptr<ACE_Service_Gestalt> pcfg,
if (TAO_debug_level > 4)
TAOLIB_DEBUG ((LM_DEBUG,
ACE_TEXT ("TAO (%P|%t) - We are%Cthe default ")
- ACE_TEXT ("ORB ...\n"),
- (service_open_count == 0) ? " " : " not "));
+ ACE_TEXT ("%C ORB ...\n"),
+ (service_open_count == 0) ? " " : " not ",
+ TAO_VERSION));
}
++service_open_count;