diff --git a/app/Model/Log.php b/app/Model/Log.php index 4c8d14bed..2d6b983f2 100644 --- a/app/Model/Log.php +++ b/app/Model/Log.php @@ -402,6 +402,8 @@ class Log extends AppModel } if (!empty($data['Log']['description'])) { $entry .= " -- {$data['Log']['description']}"; + } else if (!empty($data['Log']['change'])) { + $entry .= " -- " . json_encode($data['Log']['change']); } $this->syslog->write($action, $entry); }