To prevent showing yellow crash page if an error raised in one of Sitecore controls and keep handle errors for developers without showing errors in the site.
Easily override "Sitecore.Mvc.Pipelines.Response.RenderRendering.ExecuteRenderer" by add new pipeline to execute the following code
Easily override "Sitecore.Mvc.Pipelines.Response.RenderRendering.ExecuteRenderer" by add new pipeline to execute the following code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ExecuteRenderer : Sitecore.Mvc.Pipelines.Response.RenderRendering.ExecuteRenderer | |
{ | |
public override void Process( RenderRenderingArgs args) | |
{ | |
try | |
{ | |
base.Process( args); | |
} | |
catch (Exception ex) | |
{ | |
args.Cacheable = false; | |
// TODO: Log the error | |
Log.Error(ex.Message, ex, this); | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
configuration xmlns:patch="http://www.sitecore.net/xmlconfig/" xmlns:set="http://www.sitecore.net/xmlconfig/set/"> | |
<sitecore> | |
<pipelines> | |
<mvc.renderRendering> | |
<processor patch:instead="*[@type='Sitecore.Mvc.Pipelines.Response.RenderRendering.ExecuteRenderer, Sitecore.Mvc']" type="Sitecore.sharedsource.Errors.Piplines.ExecuteRenderer, Sitecore.sharedsource.Errors"/> | |
</mvc.renderRendering> | |
</pipelines> | |
</sitecore> | |
</configuration> | |