diff options
author | Jose <jose@zeroc.com> | 2017-01-09 17:01:31 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-01-09 17:01:31 +0100 |
commit | d4ed7973f1824478477be29989fc125b04207494 (patch) | |
tree | ec488f46a0ee15f987a0a24c87d1fe0a999cc168 /cpp/src/IceBox/ServiceManagerI.cpp | |
parent | IceSSL C#/Java test fixes to sync with C++ changes (diff) | |
download | ice-d4ed7973f1824478477be29989fc125b04207494.tar.bz2 ice-d4ed7973f1824478477be29989fc125b04207494.tar.xz ice-d4ed7973f1824478477be29989fc125b04207494.zip |
Fixed (ICE-6694) - Unicode output in command line tools
Diffstat (limited to 'cpp/src/IceBox/ServiceManagerI.cpp')
-rw-r--r-- | cpp/src/IceBox/ServiceManagerI.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/IceBox/ServiceManagerI.cpp b/cpp/src/IceBox/ServiceManagerI.cpp index c767df5552f..fdae86be07f 100644 --- a/cpp/src/IceBox/ServiceManagerI.cpp +++ b/cpp/src/IceBox/ServiceManagerI.cpp @@ -10,6 +10,7 @@ #include <IceUtil/Options.h> #include <IceUtil/StringUtil.h> #include <Ice/Ice.h> +#include <Ice/ConsoleUtil.h> #include <Ice/DynamicLibrary.h> #include <Ice/SliceChecksums.h> #include <Ice/Initialize.h> @@ -17,6 +18,7 @@ #include <IceBox/ServiceManagerI.h> using namespace Ice; +using namespace IceUtilInternal; using namespace IceBox; using namespace std; @@ -467,7 +469,7 @@ IceBox::ServiceManagerI::start() string bundleName = properties->getProperty("IceBox.PrintServicesReady"); if(!bundleName.empty()) { - cout << bundleName << " ready" << endl; + consoleOut << bundleName << " ready" << endl; } // |