mirror of https://github.com/Icinga/icinga2.git
Fix unnecessary blank in log message
This fixes an unnecessary blank in the updating configuraiton log message. information/cli: Updating ' "conf.d"' include in '/etc/icinga2/icinga2.conf'. Should be: information/cli: Updating '"conf.d"' include in '/etc/icinga2/icinga2.conf'.
This commit is contained in:
parent
745e0ba021
commit
d868780e6d
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue