From 8806b1ae8ec95bbaf920f0ddb5d34f72e2b5f1de Mon Sep 17 00:00:00 2001 From: mashiike Date: Thu, 17 Aug 2023 12:19:35 +0900 Subject: [PATCH] refactor: If it is initialized with 0 like this time, it will fall back to JSON without noticing it. --- s3s.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3s.go b/s3s.go index 8a2beab..056ac94 100644 --- a/s3s.go +++ b/s3s.go @@ -21,7 +21,7 @@ const ( type FormatType int const ( - FormatTypeJSON FormatType = iota + FormatTypeJSON FormatType = iota + 1 FormatTypeCSV FormatTypeALBLogs FormatTypeCFLogs