thekrakken / java-grok

Simple API that allows you to easily parse logs and other files
http://grok.nflabs.com/
Other
360 stars 151 forks source link

Fix match against null #48

Closed palmerabollo closed 8 years ago

palmerabollo commented 8 years ago

I know that Pile is deprecated, but this change makes it work because Grok#match always returns a Match object, thus the var gm can not be null and nullity must be ckecked with Match#isNull.

anthonycorbacho commented 8 years ago

thank you for the fix