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 GitHub
commit 68c1e56cef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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