Skip to content

Commit

Permalink
Don't quote table keys
Browse files Browse the repository at this point in the history
  • Loading branch information
mstemm committed Jul 24, 2019
1 parent d87fbf2 commit f05e169
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions userspace/engine/lua/rule_loader.lua
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ end

-- Permissive for case and for common abbreviations.
priorities = {
"Emergency"=0, "Alert"=1, "Critical"=2, "Error"=3, "Warning"=4, "Notice"=5, "Informational"=5, "Debug"=7,
"emergency"=0, "alert"=1, "critical"=2, "error"=3, "warning"=4, "notice"=5, "informational"=5, "debug"=7,
"EMERGENCY"=0, "ALERT"=1, "CRITICAL"=2, "ERROR"=3, "WARNING"=4, "NOTICE"=5, "INFORMATIONAL"=5, "DEBUG"=7,
"INFO"=5
Emergency=0, Alert=1, Critical=2, Error=3, Warning=4, Notice=5, Informational=5, Debug=7,
emergency=0, alert=1, critical=2, error=3, warning=4, notice=5, informational=5, debug=7,
EMERGENCY=0, ALERT=1, CRITICAL=2, ERROR=3, WARNING=4, NOTICE=5, INFORMATIONAL=5, DEBUG=7,
INFO=5
}

--[[
Expand Down

0 comments on commit f05e169

Please sign in to comment.