Results 1 issues of 张伯雨

在log.go文件中 存在 代码: if _, err := os.Stat(dirPath); os.IsNotExist(err) { //检查目录是否存在 os.Mkdir(dirPath, 0775) //创建目录 建议修改为 os.MkdirAll(dirPath,0775) }