diff options
author | iliyan <iliyan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-09-25 14:50:35 +0000 |
---|---|---|
committer | iliyan <iliyan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-09-25 14:50:35 +0000 |
commit | e8d586bcbfce0796c32729f8234a74ca44a5a5c4 (patch) | |
tree | 356d769b03b841385f42657ccfeada07ce730320 /ace/Dynamic_Service_Base.cpp | |
parent | e63d4e617c903edc335ef8b246371e71f8d203f2 (diff) | |
download | ATCD-bug2612-ace.tar.gz |
ChangeLogTag: Fri Sep 22 21:02:58 UTC 2006 Iliyan Jeliazkov <iliyan@ociweb.com>bug2612-ace
Diffstat (limited to 'ace/Dynamic_Service_Base.cpp')
-rw-r--r-- | ace/Dynamic_Service_Base.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/ace/Dynamic_Service_Base.cpp b/ace/Dynamic_Service_Base.cpp index 35b963ca64d..4541a9b58bc 100644 --- a/ace/Dynamic_Service_Base.cpp +++ b/ace/Dynamic_Service_Base.cpp @@ -86,22 +86,21 @@ ACE_Dynamic_Service_Base::instance (const ACE_Service_Gestalt* repo, { type = svc_rec->type (); if (type != 0) - obj = type->object (); + obj = type->object (); } if (ACE::debug ()) { ACE_DEBUG ((LM_DEBUG, - ACE_LIB_TEXT ("(%P|%t) DSB::instance, repo=%@, name=%s, ") - ACE_LIB_TEXT ("type=%@ => %@"), - repo->repo_, name, type, obj)); + ACE_LIB_TEXT ("(%P|%t) DSB::instance, repo=%@, name=%s") + ACE_LIB_TEXT (" type=%@ => %@"), + repo->repo_, name, type, obj)); if (repo->repo_ != repo_found->repo_) - ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT (" [in repo=%@]\n"), - repo_found->repo_)); + ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT (" [in repo=%@]\n"), + repo_found->repo_)); else - ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\n"))); - + ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\n"))); } return obj; |