From 66aaca95d925399cf5849207c639c564aaa96f2a Mon Sep 17 00:00:00 2001 From: Mike Han Date: Tue, 19 Nov 2024 10:40:59 -0700 Subject: [PATCH] Format dat whitespace --- internal/saucecloud/cloud.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/internal/saucecloud/cloud.go b/internal/saucecloud/cloud.go index 4faf62d2e..dab0ce0cd 100644 --- a/internal/saucecloud/cloud.go +++ b/internal/saucecloud/cloud.go @@ -757,7 +757,9 @@ func (r *CloudRunner) uploadArchive(fileInfo storage.FileInfo, pType uploadType, if err != nil { return "", err } - log.Info().Str("duration", time.Since(start).Round(time.Second).String()).Str("storageId", resp.ID). + log.Info(). + Str("duration", time.Since(start).Round(time.Second).String()). + Str("storageId", resp.ID). Msgf("%s uploaded.", cases.Title(language.English).String(string(pType))) return fmt.Sprintf("storage:%s", resp.ID), nil }