audit/syslog: switch defaults

This commit is contained in:
Armon Dadgar 2015-04-25 18:26:08 -07:00 committed by Mitchell Hashimoto
parent 1403fb987b
commit f01e14351a
1 changed files with 1 additions and 2 deletions

View File

@ -24,8 +24,7 @@ func Factory(conf map[string]string) (audit.Backend, error) {
}
// Check if raw logging is enabled
// TODO: Default this to false once copystructure/hashing is fixed
logRaw := true
logRaw := false
if raw, ok := conf["log_raw"]; ok {
b, err := strconv.ParseBool(raw)
if err != nil {