SMVirus
SMVirus
Fix the exception when use `__file__` attribute in .py config file. eg: ```python filename=orator.py import os import dotenv dotenv.load_dotenv(os.path.join(os.path.dirname(os.path.abspath(__file__)), '.env')) databases = { 'default': 'sql', 'sql': { 'driver': os.getenv('SQL_DRIVER'), 'host':...
你好,我看之前的代码提交记录,在最初 log.Logger 是支持 Debug 级别的日志记录的,后来在 [chore: optimize log](https://github.com/go-eagle/eagle/commit/96a3b88ed6ee58a9a3d8a34b84e737b7a995bb95) 这次提交中去掉了 Debug 级别的支持。 我理解 Debug 级别的日志和 Info 级别的日志差别还是比较大的。在实践经验中,通常是开发和测试环境中开启 Debug 级别的日志,生产环境中开启 Info 日志,缺少 Debug 级别的日志会对测试环境排查问题有比较大的影响。 想了解下咱们是出于什么原因选择了这样的设计,以及后续是否有计划重新增加对 Debug 级别日志的支持呢?
The `go test` require the package list appear before any flag unknown to the `go test` command. But `vscode-go` constructs arguments for the go test call with `testify` that doesn't...
Sometimes GoldenDict will continue to look up the clipboard after looking up the PopClip text. So I added PopClip text to the clipboard to avoid the loss of results when...