summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-11-15 19:59:07 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-11-15 19:59:07 +0000
commit27aed3db0cd9a63a62dd92dc23c9826689d7eec2 (patch)
treec5e86892210c368f5aade01b80977f92d743e603 /cpp/src
parentstop services in reverse order of which they were started (diff)
downloadice-27aed3db0cd9a63a62dd92dc23c9826689d7eec2.tar.bz2
ice-27aed3db0cd9a63a62dd92dc23c9826689d7eec2.tar.xz
ice-27aed3db0cd9a63a62dd92dc23c9826689d7eec2.zip
Remove debug statements
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/IceBox/ServiceManagerI.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/cpp/src/IceBox/ServiceManagerI.cpp b/cpp/src/IceBox/ServiceManagerI.cpp
index 7ae49c2e7e4..fb656a71cec 100644
--- a/cpp/src/IceBox/ServiceManagerI.cpp
+++ b/cpp/src/IceBox/ServiceManagerI.cpp
@@ -407,7 +407,6 @@ IceBox::ServiceManagerI::start(const string& service, const string& entryPoint,
throw;
}
-cout << "Starting " << info.name << endl;
info.library = library;
_services.push_back(info);
}
@@ -442,7 +441,6 @@ IceBox::ServiceManagerI::stopAll()
for(p = _services.rbegin(); p != _services.rend(); ++p)
{
ServiceInfo& info = *p;
-cout << "Stopping " << info.name << endl;
try
{
info.service->stop();