diff --git a/CHANGELOG.md b/CHANGELOG.md index c1b2800..f3ea251 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ CHANGELOG for 1.x =================== +## v1.3.0 - (2024-04-29) +### Added +- `ISO8601Formatter` for common date formatting +- `ProcessMonitor` Add functions to manage process log and print them out to the console + +### Changed +- `ProcessMonitor::start` Add boolean flush param to better manage when the process should be flushed +- `ProcessMonitor::end` Handle passing process param as null + ## v1.2.4 - (2024-04-22) **The process duration value is now calculated in milliseconds instead of seconds.** diff --git a/src/Monitoring/ProcessMonitor.php b/src/Monitoring/ProcessMonitor.php index 131c34d..347cac3 100644 --- a/src/Monitoring/ProcessMonitor.php +++ b/src/Monitoring/ProcessMonitor.php @@ -84,7 +84,7 @@ public function logException(\Exception $e): void { $message = $e->getMessage(); $this->process?->setSummary($message); - $this->process?->addExceptionTraceData($e); + // $this->process?->addExceptionTraceData($e); cause memomry limit issue on clever, try to catch the exception with sentry instead $this->consoleIo?->error($message); }