mirror of
https://github.com/mikefarah/yq.git
synced 2026-09-05 00:54:51 +08:00
Add accessor for the yq logger instance (#1013)
Allow consumers of yqlib to customize the logger instance. Closes #432 Signed-off-by: Carolyn Van Slyck <me@carolynvanslyck.com> Co-authored-by: Carolyn Van Slyck <me@carolynvanslyck.com> Co-authored-by: Rob Ferguson <robert.j.ferguson@nasa.gov>
This commit is contained in:
co-authored by
Carolyn Van Slyck
Rob Ferguson
parent
176fec639d
commit
d41b44dc42
@@ -0,0 +1,10 @@
|
||||
package yqlib
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestGetLogger(t *testing.T) {
|
||||
l := GetLogger()
|
||||
if l != log {
|
||||
t.Fatal("GetLogger should return the yq logger instance, not a copy")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user