Resque\Logger\Handler\Connector\AbstractConnector::processor PHP Method

processor() public method

The default processor is the StripFormatProcessor which removes all the console colour formatting from the string
public processor ( Command $command, Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output, array $args ) : StripProcessor
$command Symfony\Component\Console\Command\Command
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
$args array
return StripProcessor
    public function processor(Command $command, InputInterface $input, OutputInterface $output, array $args)
    {
        return new StripFormatProcessor($command, $input, $output);
    }