Forgot the space in SplunkLogging

This commit is contained in:
Raphael Sofaer 2011-06-04 23:44:12 -07:00
parent 6d105e5c09
commit 1aa1ddc829

View file

@ -16,7 +16,7 @@ module SplunkLogging
if [Symbol, Fixnum, Float, Class].include?(value.class)
string << "#{key}=#{value} "
else
string << "#{key}=\"#{value.to_s.gsub('"', '\"')}\""
string << "#{key}=\"#{value.to_s.gsub('"', '\"')}\" "
end
end
string