Skip to content

Commit

Permalink
Merge pull request #27 from jordansissel/fix_log_level
Browse files Browse the repository at this point in the history
Change log level to debug
  • Loading branch information
jordansissel committed Sep 22, 2016
2 parents e3ba22f + 7cf42b6 commit 972a557
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELIST
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* 0.11.4
- Change log level to debug when adding patterns from file

* 0.11.3
- Add optimized match_direct method

Expand Down
2 changes: 1 addition & 1 deletion grok.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |spec|

#svnrev = %x{svn info}.split("\n").grep(/Revision:/).first.split(" ").last.to_i
spec.name = "jls-grok"
spec.version = "0.11.3"
spec.version = "0.11.4"

spec.summary = "grok bindings for ruby"
spec.description = "Grok ruby bindings - pattern match/extraction tool"
Expand Down
2 changes: 1 addition & 1 deletion lib/grok-pure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def initialize

public
def add_pattern(name, pattern)
@logger.info("Adding pattern", name => pattern)
@logger.debug("Adding pattern", name => pattern)
@patterns[name] = pattern
return nil
end # def add_pattern
Expand Down

0 comments on commit 972a557

Please sign in to comment.