We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c00c00c commit e277ee0Copy full SHA for e277ee0
spec/inputs/file_tail_spec.rb
@@ -201,7 +201,10 @@
201
let(:conf) { Hash.new }
202
let(:mlconf) { Hash.new }
203
let(:events) { Array.new }
204
- let(:mlcodec) { LogStash::Codecs::Multiline.new(mlconf) }
+ let(:mlcodec) {
205
+ puts " The value of mlconf is #{mlconf}"
206
+ LogStash::Codecs::Multiline.new(mlconf)
207
+ }
208
let(:tracer_codec) { FileInput::CodecTracer.new }
209
let(:tmpdir_path) { Stud::Temporary.directory }
210
let(:tmpfile_path) { ::File.join(tmpdir_path, "#{suffix}.txt") }
0 commit comments