ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLineFormatter.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
31 {
35  public function format(LogRecord $record): string
36  {
37  if (isset($record["extra"]["trace"])) {
38  $record = $record->with(
39  message: $record["extra"]["trace"] . " " . $record["message"],
40  extra: []
41  );
42  }
43 
44  $record = $record->with(context: []);
45 
46  return parent::format($record);
47  }
48 }
Custom line formatter.
format(LogRecord $record)