cjphaha opened a new pull request #1617:
URL: https://github.com/apache/dubbo-go/pull/1617
Some code in the project uses native log, such as :
```go
import (
"log"
)
log.Printf("xxx")
```
Now change it to the unified use of the framework itself logger, the code is
in `common/logger` 中,the modified method of use is:
```go
import (
log "dubbo.apache.org/dubbo-go/v3/common/logger"
)
log.Infof("xxx")
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]