Method: Fluent::Plugin::GzipParser#parse
- Defined in:
- lib/fluent/plugin/parser_gzip.rb
#parse(text) {|x| ... } ⇒ Object
14 15 16 17 18 19 |
# File 'lib/fluent/plugin/parser_gzip.rb', line 14 def parse(text) log.debug("Parsing: #{text}") x = compress(text) log.debug("After compress: #{x}") yield x end |