mirror of
https://github.com/strongdm/comply
synced 2024-11-17 05:14:55 +00:00
7468711b3b
Releases after github.com/xanzy/go-gitlab@v0.31.0 introduce breaking changes to the NewClient call. Addresses #94
27 lines
513 B
Go
27 lines
513 B
Go
// +build !go1.4
|
|
|
|
package log15
|
|
|
|
import (
|
|
"sync/atomic"
|
|
"unsafe"
|
|
)
|
|
|
|
// swapHandler wraps another handler that may be swapped out
|
|
// dynamically at runtime in a thread-safe fashion.
|
|
type swapHandler struct {
|
|
handler unsafe.Pointer
|
|
}
|
|
|
|
func (h *swapHandler) Log(r *Record) error {
|
|
return h.Get().Log(r)
|
|
}
|
|
|
|
func (h *swapHandler) Get() Handler {
|
|
return *(*Handler)(atomic.LoadPointer(&h.handler))
|
|
}
|
|
|
|
func (h *swapHandler) Swap(newHandler Handler) {
|
|
atomic.StorePointer(&h.handler, unsafe.Pointer(&newHandler))
|
|
}
|