2

我知道这里也问过同样的问题:How to remove the stacktrace from the standard ServiceStack error respose

但无论我尝试什么都没关系,即使在远程请求中,我也无法从 ResponseStatus 中删除 StackTrace。

SetConfig(new EndpointHostConfig { DebugMode = false, });

不工作或我无法使其工作。任何建议都可能非常有帮助。

谢谢

4

1 回答 1

0

这确实按预期工作。这是使它如此的LOC

if (EndpointHost.UserConfig.DebugMode)
{
    // View stack trace in tests and on the client
    responseStatus.StackTrace = GetRequestErrorBody() + ex;
}
于 2012-07-24T16:04:23.390 回答