You are here

public function LoggingFormatter::format in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Compiler/LoggingFormatter.php \Symfony\Component\DependencyInjection\Compiler\LoggingFormatter::format()
4 calls to LoggingFormatter::format()
LoggingFormatter::formatInlineService in vendor/symfony/dependency-injection/Compiler/LoggingFormatter.php
LoggingFormatter::formatRemoveService in vendor/symfony/dependency-injection/Compiler/LoggingFormatter.php
LoggingFormatter::formatResolveInheritance in vendor/symfony/dependency-injection/Compiler/LoggingFormatter.php
LoggingFormatter::formatUpdateReference in vendor/symfony/dependency-injection/Compiler/LoggingFormatter.php

File

vendor/symfony/dependency-injection/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);
}