Skip to content

Instantly share code, notes, and snippets.

@sebastiantecsi
Created March 19, 2018 15:04
Embed
What would you like to do?
namespace MyExtensions.Pipelines.Demo
{
public class DemoCode
{
public void Process(PipelineArgs args)
{
Sitecore.Diagnostic.Log.Info("MyExtensions: Running DemoCode.Process method", this);
//do your magic
Sitecore.Diagnostic.Log.Info("MyExtensions: Done running DemoCode.Process method", this);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment