From f01e14351aff93d72ce7a5bcdef96354522743a3 Mon Sep 17 00:00:00 2001 From: Armon Dadgar Date: Sat, 25 Apr 2015 18:26:08 -0700 Subject: [PATCH] audit/syslog: switch defaults --- builtin/audit/syslog/backend.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/builtin/audit/syslog/backend.go b/builtin/audit/syslog/backend.go index 1e2065873..f0856e8b6 100644 --- a/builtin/audit/syslog/backend.go +++ b/builtin/audit/syslog/backend.go @@ -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 {