Fix log output format in wdPostTaskCmd

Fix log output format in wdPostTaskCmd
This commit is contained in:
Phi 2023-12-08 09:21:07 +01:00
parent cf8fed9440
commit 4ab92cae70

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
},
}