diff --git a/CHANGELOG.md b/CHANGELOG.md index 83dbe37..626cc4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) with the minor change that we use a prefix instead of grouping. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.17.0] - 2024-11-15 +- Added: extra logging on executed script error + ## [1.16.0] - 2024-10-14 - Security: dependency and security updates diff --git a/probe.go b/probe.go index e2134b2..4f34749 100644 --- a/probe.go +++ b/probe.go @@ -73,6 +73,8 @@ func run(cmd *exec.Cmd) runResult { if errors.As(err, &e) { result.exitCode = e.ExitCode() } + + log.Error("[Run] encountered an error: ", result.stderr) } log.Debug("[Run] end duration: ", result.exitCode)