在 HotChocolate GraphQL 服务器中抛出异常时,如何获取更多错误详细信息或日志记录?

问题描述

我正在构建一个简单的 HotChocolate GraphQl 服务器,HotChocolate 会抛出一个 Unexpected Execution Error,但不会公开任何有关错误的信息,只要我针对它发布请求。 我如何向后端(BananaCakePop、Postman、Insomnia 等)发布请求并不重要。
响应如下:

{
  "errors": [
    {
      "message": "Unexpected Execution Error","locations": [
        {
          "line": 2,"column": 3
        }
      ],"path": [
        "pong"
      ]
    }
  ],"data": {
    "pong": null
  }
}

请求响应不包含更多信息,应用程序控制台也没有记录任何内容。 尝试找出问题所在的合理下一步是什么?

解决方法

如果没有附加调试器,默认情况下 HotChocolate 不会公开您的异常的详细信息。 因此,要获取错误消息,您可以:

  • 将调试器附加到您的服务器,然后它会在请求中公开异常详细信息(也就是在调试中启动您的服务器:D)
  • 以更适合您的开发风格的方式更改此行为。

您可以通过以下方式更改 V11 中的默认行为:

public class Startup
{
    private readonly IWebHostEnvironment _env;

    public Startup(IWebHostEnvironment env)
    {
        _env = env;
    }

    public void ConfigureServices(IServiceCollection services)
    {
        services
            .AddGraphQLServer()
            ...
            // You can change _env.IsDevelopment() to whatever condition you want.
            // If the condition evaluates to true,the server will expose it's exceptions details
            // within the reponse.
            .ModifyRequestOptions(opt => opt.IncludeExceptionDetails = _env.IsDevelopment());  
    }
}

您可以通过以下方式更改 V10 中的默认行为:

public class Startup
{
    private readonly IWebHostEnvironment _env;

    public Startup(IWebHostEnvironment env)
    {
        _env = env;
    }

    public void ConfigureServices(IServiceCollection services)
    {
        services.AddGraphQL(
            Schema.Create(builder =>
            {
                ...
            }),// You can change _env.IsDevelopment() to whatever condition you want.
            // If the condition evaluates to true,the server will expose it's exceptions details
            // within the reponse.
            new QueryExecutionOptions {IncludeExceptionDetails = _env.IsDevelopment()}
        );
    }
}

您还可以向您的应用程序添加 IErrorFilter,例如,可以将您的异常记录到您的语言环境控制台,或将异常转换为 GraphQlErrors。 有关此主题的更多信息,请查看:

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...