diff options
author | Jakob Unterwurzacher | 2016-12-10 11:50:16 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-12-10 11:54:36 +0100 |
commit | c9f4400e6dc71a36df5dc9725f52a8968f5f9803 (patch) | |
tree | 601cff97e2f5d472a68e3a133da43237af032521 /internal/stupidgcm/stupidgcm_test.go | |
parent | 6c86afb5cd63b099d1762da1a2ce3f76703dc4fb (diff) |
Replace all calls to naked panic() with log.Panic()
We want all panics to show up in the syslog.
Diffstat (limited to 'internal/stupidgcm/stupidgcm_test.go')
-rw-r--r-- | internal/stupidgcm/stupidgcm_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/stupidgcm/stupidgcm_test.go b/internal/stupidgcm/stupidgcm_test.go index 3c11dfe..d6c0714 100644 --- a/internal/stupidgcm/stupidgcm_test.go +++ b/internal/stupidgcm/stupidgcm_test.go @@ -13,6 +13,7 @@ import ( "crypto/cipher" "crypto/rand" "encoding/hex" + "log" "testing" // For benchmark comparison @@ -24,7 +25,7 @@ func randBytes(n int) []byte { b := make([]byte, n) _, err := rand.Read(b) if err != nil { - panic("Failed to read random bytes: " + err.Error()) + log.Panic("Failed to read random bytes: " + err.Error()) } return b } |