Skip to content

Instantly share code, notes, and snippets.

@sebastiantecsi
Created March 19, 2018 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebastiantecsi/22a9b8038b7e801ecad1d83e1bbacbc6 to your computer and use it in GitHub Desktop.
Save sebastiantecsi/22a9b8038b7e801ecad1d83e1bbacbc6 to your computer and use it in GitHub Desktop.
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