如何在Kentico开发期间暴露错误

时间:2019-03-01 18:58:24

标签: c# error-handling kentico

我在Kentico进行开发时,怀念死亡的黄屏。每次发生错误时,即使我在web.config中关闭了自定义错误,它也会显示502错误的网关。更糟糕的是,事件日志中没有关于错误的任何内容。

那么当我在Kentico中进行开发时,如何获得原始的c#.Net错误?

1 个答案:

答案 0 :(得分:2)

如果您的项目在Visual Studio中正常构建,则Kentico事件日志中没有事件,则在web.config中启用了调试,并且具有web.config项以在页面上显示错误,然后检查IIS。事件日志,它们应该为您提供更多信息。

parseJSON = withObject "DataPoint" $ \o -> do
    name <- o .: "name"
    reading <- o .: "reading
    return $ \x -> DataPoint name (reading, x)