protected function Updater::logInfo in Update helper 2.x
Same name and namespace in other branches
- 8 src/Updater.php \Drupal\update_helper\Updater::logInfo()
Log information message, that will be displayed on update execution.
Parameters
string $message: The message used for logging of info.
3 calls to Updater::logInfo()
- Updater::executeConfigurationActions in src/
Updater.php - Execute configuration update definitions for configurations.
- Updater::importConfigs in src/
Updater.php - Imports configurations.
- Updater::installModules in src/
Updater.php - Installs modules.
File
- src/
Updater.php, line 126
Class
- Updater
- Helper class to update configuration.
Namespace
Drupal\update_helperCode
protected function logInfo($message) {
$this->logger
->info($message);
}