diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2019-04-11 19:38:08 +0200 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2019-04-11 19:38:08 +0200 |
commit | 9f546301da35b8f9fdffdd100aafe5daeca3b06f (patch) | |
tree | cf537868761017d1c272ffbf5a3bfaafad05cd57 | |
parent | 0fa9ddfc41d0edca827cadf16cb42c7bdb498424 (diff) | |
download | ATCD-9f546301da35b8f9fdffdd100aafe5daeca3b06f.tar.gz |
Unicode logging fixes
* TAO/orbsvcs/tests/ImplRepo/kill_slow_server/server.cpp:
-rw-r--r-- | TAO/orbsvcs/tests/ImplRepo/kill_slow_server/server.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/kill_slow_server/server.cpp b/TAO/orbsvcs/tests/ImplRepo/kill_slow_server/server.cpp index 8c43ec1ef9d..293ae2579d8 100644 --- a/TAO/orbsvcs/tests/ImplRepo/kill_slow_server/server.cpp +++ b/TAO/orbsvcs/tests/ImplRepo/kill_slow_server/server.cpp @@ -46,7 +46,7 @@ createPOAs(ACE_CString &base) PortableServer::POAManager_var mgr = PortableServer::POAManager::_nil(); ACE_CString poa_name = base + ACE_CString ("_a"); - ACE_DEBUG ((LM_DEBUG, "%P server creating POA %s\n", poa_name.c_str())); + ACE_DEBUG ((LM_DEBUG, "%P server creating POA %C\n", poa_name.c_str())); poa_a = root_poa->create_POA(poa_name.c_str(), mgr.in(), pols); } @@ -114,7 +114,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[]) ofstream out(status_file.c_str (), ios_base::app); if (!out.good()) { - ACE_DEBUG ((LM_DEBUG, "server did not get good bit from %s\n", status_file.c_str())); + ACE_DEBUG ((LM_DEBUG, "server did not get good bit from %C\n", status_file.c_str())); } out << ACE_OS::getpid () << endl; out.close (); @@ -136,7 +136,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[]) test_ior = orb->object_to_string (tva.in()); base += "_a"; - ACE_DEBUG ((LM_DEBUG, "%s:\n%s\n", base.c_str(), test_ior.in())); + ACE_DEBUG ((LM_DEBUG, "%C:\n%C\n", base.c_str(), test_ior.in())); table->bind (base.c_str (), test_ior.in ()); runner->wait (); |