docker-go 中 shim.Log() 打印的日志信息无法找到
`func (f *FactContract) InvokeContract(stub shim.CMStubInterface) protogo.Response {
// 获取参数
method := string(stub.GetArgs()["method"])
log.Printf("=======method:%v", method)
stub.Log("=======stub.Log#method:" + method + "============")
switch method {
case "save":
return f.save(stub)
case "findByFileHash":
return f.findByFileHash(stub)
default:
return shim.Error("=========invalid method===========")
}
} ` 将log.yml中INFO日志级别修改为DEBUG 也无法在system.log中查看到日志的输出