diff options
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; } |