1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-09 16:26:59 +02:00

Make ProcessLogger::formatLogText hookable (requested by @netcarver)

This commit is contained in:
Ryan Cramer
2021-01-12 07:03:25 -05:00
parent a7d0ec1c91
commit 50dff006b5

View File

@@ -6,6 +6,8 @@
* ProcessWire 3.x, Copyright 2019 by Ryan Cramer * ProcessWire 3.x, Copyright 2019 by Ryan Cramer
* https://processwire.com * https://processwire.com
* *
* @method string formatLogText($text, $logName = '')
*
* *
*/ */
@@ -492,7 +494,7 @@ class ProcessLogger extends Process {
* @return string * @return string
* *
*/ */
protected function formatLogText($text, $logName = '') { protected function ___formatLogText($text, $logName = '') {
$config = $this->wire('config'); $config = $this->wire('config');