try suppressing logs but we

This commit is contained in:
Bel LaPointe
2022-01-27 15:24:04 -07:00
parent a742433a56
commit 5742a215b1
3 changed files with 9 additions and 0 deletions

View File

@@ -27,6 +27,9 @@ type FastExact struct {
func NewFastExact() FastExact {
fe := FastExact{}
fe.doer = fe
if config.Get().Brokers.FastExact.Mock {
fe = fe.WithMock()
}
return fe
}