Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Feature/324 date filter #480

Merged
merged 8 commits into from
Apr 23, 2020
Prev Previous commit
Next Next commit
#324 - initial POC of filtering based on dates
jcarter3 committed Feb 26, 2020
commit 8ff5b01c20457ecf1adf28688ac5cc1c46b0d238
1 change: 0 additions & 1 deletion pkg/config/filter.go
Original file line number Diff line number Diff line change
@@ -70,7 +70,6 @@ func (f Filter) Match(o string) (bool, error) {
if err != nil {
return false, err
}
fmt.Printf("offsetTime: %s\nfieldTime: %s\nisBefore? %v\n", offsetTime, fieldTime, offsetTime.Before(fieldTime))
return offsetTime.Before(fieldTime), nil

default: