Results 7 comments of ningzi

could we disable color on timestamp field? It's really hard to read on dark background terminal

the default timestamp Formatter implementation is written in [here](https://github.com/rs/zerolog/blob/78448ee023209bf4c775db922722c877e066e9e6/console.go#L295) we can write our own Formatter to disable color ```go func main() { consoloLog := zerolog.NewConsoleWriter(func(w *zerolog.ConsoleWriter) { w.FormatTimestamp = consoleFormatTimestamp(w.TimeFormat)...

i have the same problem, do we have any solution?

> @NingziSlay Can you confirm if this is specific to MySQL? sorry about poor English, hope you could understand.. yes, i only use mysql to my project. i use fastapi...

I change my code like this, and it's work. ```python3 class SessionMaker(object): _session = None @classmethod def get_session(cls): if not cls._session: cls._session = databases.Database(settings.DB_URL) return cls._session ``` on main.py ```python3...

我也也到同样的问题,仅开启系统代理时可以上网,打开 tun 模式后无法上网

我在调试一个接口超时问题时也遇到了类似的迷惑的点,我只能在所有可以设置超时的地方逐个测试超时时间对接口的影响。