Skip to content

Commit

Permalink
Remove ':' from debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
orz25 committed Feb 6, 2024
1 parent c5bdf3f commit 5ba2a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/xraymanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func SendXscGitInfoRequestIfEnabled(graphScanParams *services.XrayGraphScanParam
return fmt.Errorf("failed sending Git Info request to XSC service, error: %s ", err.Error())
}
graphScanParams.MultiScanId = multiScanId
log.Debug(fmt.Sprintf("Created xsc git info successfully. multi_scan_id: %s", multiScanId))
log.Debug(fmt.Sprintf("Created xsc git info successfully. multi_scan_id %s", multiScanId))
if err = os.Setenv("JF_MSI", multiScanId); err != nil {
// Not a fatal error, if not set the scan will not be shown at the XSC UI, should not fail the scan.
log.Debug(fmt.Sprintf("failed setting MSI as environment variable. Cause: %s", err.Error()))
Expand Down

0 comments on commit 5ba2a87

Please sign in to comment.