diff options
author | Jose <jose@zeroc.com> | 2009-02-24 17:14:54 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2009-02-24 17:14:54 +0100 |
commit | 49987479748fb4f5dd06f72eb9358918bae97606 (patch) | |
tree | d6a4514eb6b2e03a2d576fb652ad1356e3cf8286 /cpp/src/Slice/PythonUtil.cpp | |
parent | Fixed bug 2968 - /etc/icegridregistry.conf (diff) | |
download | ice-49987479748fb4f5dd06f72eb9358918bae97606.tar.bz2 ice-49987479748fb4f5dd06f72eb9358918bae97606.tar.xz ice-49987479748fb4f5dd06f72eb9358918bae97606.zip |
Minor fixes to metadata messages.
Diffstat (limited to 'cpp/src/Slice/PythonUtil.cpp')
-rw-r--r-- | cpp/src/Slice/PythonUtil.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Slice/PythonUtil.cpp b/cpp/src/Slice/PythonUtil.cpp index 79dcf784d5d..34fb3bd9654 100644 --- a/cpp/src/Slice/PythonUtil.cpp +++ b/cpp/src/Slice/PythonUtil.cpp @@ -2160,7 +2160,7 @@ Slice::Python::MetaDataVisitor::validateSequence(const string& file, const strin } } } - emitWarning(file, line, "ignoring metadata `" + s + "'"); + emitWarning(file, line, "ignoring invalid metadata `" + s + "'"); } } } @@ -2176,7 +2176,7 @@ Slice::Python::MetaDataVisitor::reject(const ContainedPtr& cont) { if(p->find(prefix) == 0) { - emitWarning(cont->file(), cont->line(), "ignoring metadata `" + *p + "'"); + emitWarning(cont->file(), cont->line(), "ignoring invalid metadata `" + *p + "'"); } } } |