kube-object-storage / lib-bucket-provisioner

Library for the dynamic provisioning of object store buckets to be used by object store providers.
Apache License 2.0
21 stars 22 forks source link

Allow library consumers to provide their own logger #78

Open jeffvance opened 5 years ago

jeffvance commented 5 years ago
Easily customizable loggers
There is no broadly accepted Go logging library. Expose a logging interface that does not force me to import your favorite.

From: https://medium.com/@cep21/aspects-of-a-good-go-library-7082beabb403

copejon commented 5 years ago

The provisioner should be capable of accepting a passed in logger from a library consumer. Else it should use an internally defined default.

jeffvance commented 5 years ago

See #114