From 310c775d0b8a436481c585b472b0b50821ea522c Mon Sep 17 00:00:00 2001 From: Narasimha Kulkarni <63087328+nakulkar-msft@users.noreply.github.com> Date: Thu, 7 Sep 2023 09:51:04 +0530 Subject: [PATCH] Fix lint error --- ste/xferLogPolicy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ste/xferLogPolicy.go b/ste/xferLogPolicy.go index de42aeff6..c8bd3d1e5 100644 --- a/ste/xferLogPolicy.go +++ b/ste/xferLogPolicy.go @@ -321,7 +321,7 @@ func (o LogOptions) ToPipelineLogOptions() pipeline.LogOptions { return o.ShouldLog(common.LogLevel(ll)) } - return pipeline.LogOptions{log, shouldLog} + return pipeline.LogOptions{Log: log, ShouldLog: shouldLog} } type logPolicy struct {