Merge pull request #11504 from filecoin-project/lp-wdposttaskcmd-format

fix: lotus-provider: Fix log output format in wdPostTaskCmd
This commit is contained in:
Łukasz Magiera 2023-12-11 13:30:41 +01:00 committed by Phi
parent 1945944260
commit 0f6b83cdf2

View File

@ -117,7 +117,7 @@ var wdPostTaskCmd = &cli.Command{
}
fmt.Print(".")
}
log.Infof("Result:", result.String)
log.Infof("Result: %s", result.String)
return nil
},
}