(ctx context.Context, fmtStr string, args ...interface{})
| 419 | } |
| 420 | |
| 421 | func debugLog(ctx context.Context, fmtStr string, args ...interface{}) { |
| 422 | blocklogger.Infof(ctx, "[conndebug] "+fmtStr, args...) |
| 423 | log.Printf(fmtStr, args...) |
| 424 | } |
| 425 | |
| 426 | func CheckConnStatus(blockId string) error { |
| 427 | bdata, err := wstore.DBMustGet[*waveobj.Block](context.Background(), blockId) |