diff OrthancServer/OrthancInitialization.cpp @ 439:081a44d5110b

notes
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 15 May 2013 17:10:52 +0200
parents 28ba73274919
children 997282a61ff8
line wrap: on
line diff
--- a/OrthancServer/OrthancInitialization.cpp	Wed May 15 16:51:10 2013 +0200
+++ b/OrthancServer/OrthancInitialization.cpp	Wed May 15 17:10:52 2013 +0200
@@ -129,11 +129,11 @@
       for (size_t i = 0; i < members.size(); i++)
       {
         std::string info = "\"" + members[i] + "\" = " + parameter[members[i]].toStyledString();
-        LOG(INFO) << "Registering user-specific metadata: " << info;
+        LOG(INFO) << "Registering user-defined metadata: " << info;
 
         if (!parameter[members[i]].asBool())
         {
-          LOG(ERROR) << "Not a number in this user-specific metadata: " << info;
+          LOG(ERROR) << "Not a number in this user-defined metadata: " << info;
           throw OrthancException(ErrorCode_BadParameterType);
         }
 
@@ -145,7 +145,7 @@
         }
         catch (OrthancException e)
         {
-          LOG(ERROR) << "Cannot register this user-specific metadata: " << info;
+          LOG(ERROR) << "Cannot register this user-defined metadata: " << info;
           throw e;
         }
       }