You are here

public function Compiler::addLogMessage in Service Container 7.2

Same name and namespace in other branches
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Compiler/Compiler.php \Symfony\Component\DependencyInjection\Compiler\Compiler::addLogMessage()

Adds a log message.

Parameters

string $string The log message:

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Compiler/Compiler.php, line 92

Class

Compiler
This class is used to remove circular dependencies between individual passes.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function addLogMessage($string) {
  $this->log[] = $string;
}