yeebing

Results 19 comments of yeebing

@wenxuwan, I have already understanding the process of how layotto running and ready to write the docs. Can I add some docker-compose and config files to the repo for newcomers...

Hi @QiuToo, I have encountered the same error, and I found this artical which successfully solve my problem. https://lightrun.com/answers/evildecay-etcdkeeper-404-for-httplocalhost8080etcdkeeper In short, you must start the binary from the same directory...

@cubxxw ,你好,我对openim项目很感兴趣,同时我认为编写测试是一个很好的了解项目的方式,所以能将它assign给我吗,我会在闲暇时间完成它。

我使用手机加入slack,显示error,是否能再发个slack的邀请链接

dapr 可观测性文档失效了

我后面可以尝试做一下组件的日志管理,这个跟我近期 pluggable component 有点关联,明天会上可以探讨一下。

> dapr 可观测性文档失效了 https://docs.dapr.io/concepts/observability-concept/

> `func (u *userRepo)Info(ctx context.Context) error { return errors.WithCode(code.ErrDatabase, "data 层 user info 操作失败%s","test") }` > > `fmt.Println(fmt.Sprintf("== == %s", err))` 输出的日志是空的 因为你用的是%s打印,他会默认调用err的Error函数,所以打印出来的不是你上面“"data 层 user info 操作失败%s","test"”这段内容,应该是你”code.ErrDatabase“,注册的msg内容,你可以检查一下这块有没有问题。