diff options
| author | Will Hawkins <[email protected]> | 2022-09-07 10:31:46 -0400 |
|---|---|---|
| committer | Will Hawkins <[email protected]> | 2022-09-07 10:31:46 -0400 |
| commit | a4cabcf65b099b67747569b33fe43c345ea317ad (patch) | |
| tree | 30e1f622a6a5d4f8da77998b2092a432ebffdaf5 /rpm | |
| parent | 2843fddcf328198ed6bcf4199fa35755ae936692 (diff) | |
[Bugfix] Broken extended-stats compilation for macOS
Sorry everyone!
Diffstat (limited to 'rpm')
| -rw-r--r-- | rpm/rpm.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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, ) } }() |
