Merge pull request #524 from Flynsarmy/CleanerErrorLog
Attempt to display error message in event log list
This commit is contained in:
commit
c404070cad
|
|
@ -1 +1,6 @@
|
|||
<?= Str::limit($value, 100) ?>
|
||||
<?php
|
||||
if (preg_match("/with message '(.+)' in/", $value, $matches))
|
||||
echo $matches[1];
|
||||
else
|
||||
echo Str::limit($value, 100);
|
||||
?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue