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