summaryrefslogtreecommitdiff
path: root/rpm
diff options
context:
space:
mode:
authorWill Hawkins <[email protected]>2022-09-07 10:31:46 -0400
committerWill Hawkins <[email protected]>2022-09-07 10:31:46 -0400
commita4cabcf65b099b67747569b33fe43c345ea317ad (patch)
tree30e1f622a6a5d4f8da77998b2092a432ebffdaf5 /rpm
parent2843fddcf328198ed6bcf4199fa35755ae936692 (diff)
[Bugfix] Broken extended-stats compilation for macOS
Sorry everyone!
Diffstat (limited to 'rpm')
-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,
)
}
}()