Fix typo in log message (#8984)

This commit is contained in:
Phillip LeBlanc 2023-12-15 11:31:49 +09:00 committed by GitHub
parent eeb471d800
commit 5d0627f148
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -269,7 +269,7 @@ func ApplyFlagsForEthConfig(ctx *cli.Context, cfg *ethconfig.Config, logger log.
downloadRate := ctx.String(utils.TorrentDownloadRateFlag.Name)
uploadRate := ctx.String(utils.TorrentUploadRateFlag.Name)
logger.Info("[Downloader] Runnning with", "ipv6-enabled", !disableIPV6, "ipv4-enabled", !disableIPV4, "download.rate", downloadRate, "upload.rate", uploadRate)
logger.Info("[Downloader] Running with", "ipv6-enabled", !disableIPV6, "ipv4-enabled", !disableIPV4, "download.rate", downloadRate, "upload.rate", uploadRate)
if ctx.Bool(utils.DisableIPV6.Name) {
cfg.Downloader.ClientConfig.DisableIPv6 = true
}