summaryrefslogtreecommitdiff
path: root/rpm/rpm.go
diff options
context:
space:
mode:
Diffstat (limited to 'rpm/rpm.go')
-rw-r--r--rpm/rpm.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/rpm/rpm.go b/rpm/rpm.go
index 3b32273..61c6658 100644
--- a/rpm/rpm.go
+++ b/rpm/rpm.go
@@ -190,10 +190,11 @@ func Probe(
isThreadPanicing := recover()
if isThreadPanicing != nil && debug.IsDebug(debugging.Level) {
fmt.Printf(
- "(%s) (%s Probe %v) Probe attempted to write to the result channel after its invoker ended.\n",
+ "(%s) (%s Probe %v) Probe attempted to write to the result channel after its invoker ended (official reason: %v).\n",
debugging.Prefix,
probeType.Value(),
probeId,
+ isThreadPanicing,
)
}
}()