Skip to content

Commit

Permalink
Rephrase some log messages
Browse files Browse the repository at this point in the history
refs #11122
  • Loading branch information
Crunsher authored and gunnarbeutner committed Feb 23, 2016
1 parent 09b7f39 commit fd85379
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 18 deletions.
4 changes: 2 additions & 2 deletions lib/base/configobject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ void ConfigObject::RestoreAttribute(const String& attr, bool updateVersion)
Value current = newValue;

if (current.IsEmpty())
BOOST_THROW_EXCEPTION(std::invalid_argument("Cannot restore non-existing object attribute"));
BOOST_THROW_EXCEPTION(std::invalid_argument("Cannot restore non-existent object attribute"));

String prefix = tokens[0];

Expand All @@ -272,7 +272,7 @@ void ConfigObject::RestoreAttribute(const String& attr, bool updateVersion)
prefix += "." + key;

if (!dict->Contains(key))
BOOST_THROW_EXCEPTION(std::invalid_argument("Cannot restore non-existing object attribute"));
BOOST_THROW_EXCEPTION(std::invalid_argument("Cannot restore non-existent object attribute"));

current = dict->Get(key);
}
Expand Down
4 changes: 2 additions & 2 deletions lib/cli/apisetuputility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ bool ApiSetupUtility::SetupMasterCertificates(const String& cn)

if (Utility::PathExists(key)) {
Log(LogInformation, "cli")
<< "Private key file '" << key << "' already existing, skipping.";
<< "Private key file '" << key << "' already exists, not generating new certificate.";
return true;
}

Expand Down Expand Up @@ -161,7 +161,7 @@ bool ApiSetupUtility::SetupMasterApiUser(void)

if (Utility::PathExists(apiuserspath)) {
Log(LogInformation, "cli")
<< "API user config file '" << apiuserspath << "' already existing, skipping.";
<< "API user config file '" << apiuserspath << "' already exists, not creating config file.";
return true;
}

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/nodesetupcommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ int NodeSetupCommand::SetupMaster(const boost::program_options::variables_map& v

if (Utility::PathExists(existing_path)) {
Log(LogWarning, "cli")
<< "Certificate '" << existing_path << "' for CN '" << cn << "' already existing. Skipping certificate generation.";
<< "Certificate '" << existing_path << "' for CN '" << cn << "' already exists. Not generating new certificate.";
} else {
Log(LogInformation, "cli")
<< "Certificates not yet generated. Running 'api setup' now.";
Expand Down
8 changes: 4 additions & 4 deletions lib/cli/nodeupdateconfigcommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ int NodeUpdateConfigCommand::Run(const boost::program_options::variables_map& vm
BOOST_FOREACH(const String& object_path, object_paths) {
if (object_path.Contains(host_pattern)) {
Log(LogNotice, "cli")
<< "Host '" << host << "' already existing. Skipping its creation.";
<< "Host '" << host << "' already exists.";
skip_host = true;
break;
}
Expand All @@ -272,7 +272,7 @@ int NodeUpdateConfigCommand::Run(const boost::program_options::variables_map& vm
if (NodeUtility::CheckAgainstBlackAndWhiteList("blacklist", node_name, host, Empty) &&
!NodeUtility::CheckAgainstBlackAndWhiteList("whitelist", node_name, host, Empty)) {
Log(LogWarning, "cli")
<< "Host '" << host << "' on node '" << node_name << "' is blacklisted, but not whitelisted. Skipping.";
<< "Host '" << host << "' on node '" << node_name << "' is blacklisted, but not whitelisted. Not creating host object.";
skip_host = true;
host_was_blacklisted = true; //check this for services on this blacklisted host
}
Expand Down Expand Up @@ -321,7 +321,7 @@ int NodeUpdateConfigCommand::Run(const boost::program_options::variables_map& vm
BOOST_FOREACH(const String& object_path, object_paths) {
if (object_path.Contains(service_pattern)) {
Log(LogNotice, "cli")
<< "Service '" << service << "' on Host '" << host << "' already existing. Skipping its creation.";
<< "Service '" << service << "' on Host '" << host << "' already exists.";
skip_service = true;
break;
}
Expand All @@ -332,7 +332,7 @@ int NodeUpdateConfigCommand::Run(const boost::program_options::variables_map& vm
!NodeUtility::CheckAgainstBlackAndWhiteList("whitelist", endpoint, host, service)) {
Log(LogWarning, "cli")
<< "Service '" << service << "' on host '" << host << "' on node '"
<< node_name << "' is blacklisted, but not whitelisted. Skipping.";
<< node_name << "' is blacklisted, but not whitelisted. Not creating service object.";
skip_service = true;
}

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/pkiutility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ int PkiUtility::NewCa(void)

if (Utility::PathExists(caCertFile) && Utility::PathExists(caKeyFile)) {
Log(LogCritical, "cli")
<< "CA files '" << caCertFile << "' and '" << caKeyFile << "'already exist.";
<< "CA files '" << caCertFile << "' and '" << caKeyFile << "' already exist.";
return 1;
}

Expand Down
9 changes: 3 additions & 6 deletions lib/cli/repositoryutility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -611,18 +611,15 @@ void RepositoryUtility::CommitChange(const Dictionary::Ptr& change, const String
String command = change->Get("command");
Dictionary::Ptr attrs;

if (change->Contains("attrs")) {
if (change->Contains("attrs"))
attrs = change->Get("attrs");
}

bool success = false;

if (command == "add") {
if (command == "add")
success = AddObjectInternal(name, type, attrs);
}
else if (command == "remove") {
else if (command == "remove")
success = RemoveObjectInternal(name, type, attrs);
}

if (success) {
Log(LogNotice, "cli")
Expand Down
2 changes: 1 addition & 1 deletion lib/remote/apilistener-configsync.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ Value ApiListener::ConfigDeleteObjectAPIHandler(const MessageOrigin::Ptr& origin

if (!object) {
Log(LogNotice, "ApiListener")
<< "Could not delete non-existing object '" << params->Get("name") << "'.";
<< "Could not delete non-existent object '" << params->Get("name") << "'.";
return Empty;
}

Expand Down
2 changes: 1 addition & 1 deletion lib/remote/configpackageutility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ String ConfigPackageUtility::CreateStage(const String& packageName, const Dictio
Log(LogInformation, "ConfigPackageUtility")
<< "Updating configuration file: " << filePath;

//pass the directory and generate a dir tree, if not existing already
// Pass the directory and generate a dir tree, if it does not already exist
Utility::MkDirP(Utility::DirName(filePath), 0750);
std::ofstream fp(filePath.CStr(), std::ofstream::out | std::ostream::binary | std::ostream::trunc);
fp << kv.second;
Expand Down

0 comments on commit fd85379

Please sign in to comment.