Merge "Fixed inconsistency with SeverityLabel in ovs"

This commit is contained in:
Jenkins 2016-09-21 08:23:37 +00:00 committed by Gerrit Code Review
commit 92a334d84f
1 changed files with 4 additions and 0 deletions

View File

@ -69,6 +69,10 @@ function process_message ()
local m = ovs_grammar:match(log)
if not m then return -1 end
if m.SeverityLabel == "WARN" then
m.SeverityLabel = "WARNING"
end
msg.Timestamp = m.Timestamp
msg.Logger = service
msg.Payload = m.Message