Merge pull request #6336 from Icinga/fix/log-message-typo

Fix unnecessary blank in log message
This commit is contained in:
Michael Friedrich 2018-05-25 09:08:38 +02:00 committed by GitHub
commit 1956c6aa78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ bool NodeUtility::UpdateConfiguration(const String& value, bool include, bool re
String configurationFile = Application::GetSysconfDir() + "/icinga2/icinga2.conf";
Log(LogInformation, "cli")
<< "Updating ' " << value << "' include in '" << configurationFile << "'.";
<< "Updating '" << value << "' include in '" << configurationFile << "'.";
NodeUtility::CreateBackupFile(configurationFile);