From debc3b4384e360b03ab43a48a24f3477ed6bd81b Mon Sep 17 00:00:00 2001 From: Shuai Lin Date: Sun, 25 Jul 2021 23:39:21 +0800 Subject: [PATCH] Applied gofmt --- output_file.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/output_file.go b/output_file.go index 75642478..6be27e9d 100644 --- a/output_file.go +++ b/output_file.go @@ -62,17 +62,17 @@ type FileOutputConfig struct { // FileOutput output plugin type FileOutput struct { sync.RWMutex - pathTemplate string - currentName string - file *os.File - QueueLength int - writer io.Writer - requestPerFile bool - currentID []byte - payloadType []byte - closed bool - currentFileSize int - totalFileSize size.Size + pathTemplate string + currentName string + file *os.File + QueueLength int + writer io.Writer + requestPerFile bool + currentID []byte + payloadType []byte + closed bool + currentFileSize int + totalFileSize size.Size config *FileOutputConfig }