You are here

public function LoggingFormatter::format in Service Container 7

Same name and namespace in other branches
  1. 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Compiler/LoggingFormatter.php \Symfony\Component\DependencyInjection\Compiler\LoggingFormatter::format()
4 calls to LoggingFormatter::format()
LoggingFormatter::formatInlineService in modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Compiler/LoggingFormatter.php
LoggingFormatter::formatRemoveService in modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Compiler/LoggingFormatter.php
LoggingFormatter::formatResolveInheritance in modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Compiler/LoggingFormatter.php
LoggingFormatter::formatUpdateReference in modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Compiler/LoggingFormatter.php

File

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

Class

LoggingFormatter
Used to format logging messages during the compilation.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function format(CompilerPassInterface $pass, $message) {
  return sprintf('%s: %s', get_class($pass), $message);
}