Skip to content

Commit 73f4729

Browse files
committed
SCFF-50 changing Info Logs for Trace ones
1 parent cf44262 commit 73f4729

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sumoCFFirehose/sumoLogicAppender.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ func (s *SumoLogicAppender) SendToSumo(logStringToSend string /*, wg *sync.WaitG
262262
time.Sleep(300 * time.Millisecond)
263263
return attempt < 5, errRetry
264264
} else if response.StatusCode == 200 {
265-
logging.Info. /*Trace.*/ Println("Post of logs successful after retry...")
265+
logging.Trace.Println("Post of logs successful after retry...")
266266
s.timerBetweenPost = time.Now()
267267
statusCode = response.StatusCode
268268
return true, err
@@ -277,7 +277,7 @@ func (s *SumoLogicAppender) SendToSumo(logStringToSend string /*, wg *sync.WaitG
277277
logging.Error.Printf("Not able to post after retry, with status code: %d", statusCode)
278278
}
279279
} else if response.StatusCode == 200 {
280-
logging.Info. /*Trace.*/ Println("Post of logs successful")
280+
logging.Trace.Println("Post of logs successful")
281281
s.timerBetweenPost = time.Now()
282282
}
283283

0 commit comments

Comments
 (0)