jls-lumberjack 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/lumberjack/server.rb +2 -1
- metadata +1 -1
data/lib/lumberjack/server.rb
CHANGED
@@ -167,10 +167,11 @@ module Lumberjack
|
|
167
167
|
if @data_count > 0
|
168
168
|
transition(:data_field_key_len, 4)
|
169
169
|
else
|
170
|
+
# emit the whole map now that we found the end of the data fields list.
|
171
|
+
yield :data, @sequence, @data
|
170
172
|
transition(:header, 2)
|
171
173
|
end
|
172
174
|
|
173
|
-
yield :data, @sequence, @data
|
174
175
|
end # def data_field_value
|
175
176
|
|
176
177
|
def compressed_lead(&block)
|