如果我在 Go 中有这样的代码:
package main
import "fmt"
import "log"
func main() {
fmt.Println("hello world")
log.Println("log hello world")
}
是否可以运行此程序来抑制日志输出而不更改源代码,从命令行传递标志或环境变量,例如QUIET=1 go run hello?
慕妹3242003
相关分类