diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-02-11 15:01:31 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-02-11 15:01:31 +0100 |
commit | 1c659bba126b0cfd648d632e2aa1b0ecb6b51689 (patch) | |
tree | 0c4767fbbed2805ee262ae52454844a80c4d5d22 /cpp/src/IceGrid/Activator.cpp | |
parent | makedist.py fixes and new makebindist.py (diff) | |
download | ice-1c659bba126b0cfd648d632e2aa1b0ecb6b51689.tar.bz2 ice-1c659bba126b0cfd648d632e2aa1b0ecb6b51689.tar.xz ice-1c659bba126b0cfd648d632e2aa1b0ecb6b51689.zip |
Fixed bug 2658
Diffstat (limited to 'cpp/src/IceGrid/Activator.cpp')
-rw-r--r-- | cpp/src/IceGrid/Activator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/Activator.cpp b/cpp/src/IceGrid/Activator.cpp index 397cdc31c55..230847c56f9 100644 --- a/cpp/src/IceGrid/Activator.cpp +++ b/cpp/src/IceGrid/Activator.cpp @@ -359,9 +359,9 @@ Activator::activate(const string& name, if(_traceLevels->activator > 0) { Trace out(_traceLevels->logger, _traceLevels->activatorCat); - out << "cannot convert `" << path << "' into an absolute path"; + out << "couldn't find `" << path << "' executable."; } - throw string("The server executable path `" + path + "' can't be converted into an absolute path."); + throw string("Couldn't find `" + path + "' executable."); } path = absbuf; } |