Ryo Kato

Results 2 issues of Ryo Kato

### Link to the documentation page or resource https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-start ### Describe the bug The STRAPI_LOG_*** environment variable is no longer read when upgrading to v4. So these environment variables are...

target: v4
issue: quick fix

It appears that errors.IsAny does not support multi-error. https://github.com/cockroachdb/errors/blob/c1cc1919cf999fb018fcd038852e969e3d5631cc/markers/markers.go#L152-L205 errors.Is supports multi-error. https://github.com/cockroachdb/errors/blob/c1cc1919cf999fb018fcd038852e969e3d5631cc/markers/markers.go#L44-L92 Perhaps the following equivalent code can be added to IsAny. ```go // Recursively try multi-error causes, if...