13 $ls_formatter =
new LogstashFormatter(
'app',
'system',
null,
'ctx_', LogstashFormatter::V1 );
14 $cee_formatter =
new CeeFormatter(
'app',
'system',
null,
'ctx_', LogstashFormatter::V1 );
15 $record = [
'extra' => [
'url' => 1 ],
'context' => [
'url' => 2 ] ];
17 $cee_formatter->format( $record ),
18 "@cee: " . $ls_formatter->format( $record ) );