Skip to content

Commit

Permalink
CR
Browse files Browse the repository at this point in the history
  • Loading branch information
RobiNino committed May 22, 2024
1 parent 5d3cdc9 commit 3d4f431
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Environment Variables:

const (
jfrogAppName = "jf"
traceIdLogMsg = "Trace ID for JFrog Platform logs:"
traceIdLogMsg = "Trace ID for JFrog Platform logs: "
)

// Trace ID that is generated for the Uber Trace ID header.
Expand Down Expand Up @@ -148,7 +148,7 @@ func setUberTraceIdToken() error {
return err
}
httpclient.SetUberTraceIdToken(traceID)
clientlog.Debug(traceIdLogMsg + " " + traceID)
clientlog.Debug(traceIdLogMsg + traceID)
return nil
}

Expand All @@ -168,7 +168,7 @@ func logTraceIdOnFailure(err error) {
if err == nil || traceID == "" {
return
}
clientlog.Error(traceIdLogMsg + " " + traceID)
clientlog.Info(traceIdLogMsg + traceID)
}

// Detects typos and can identify one or more valid commands similar to the error command.
Expand Down

0 comments on commit 3d4f431

Please sign in to comment.