Skip to content

Instantly share code, notes, and snippets.

@rasikag
Created September 24, 2018 01:07
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 rasikag/26bcef84b573804e4761d4c8390e0ca4 to your computer and use it in GitHub Desktop.
Save rasikag/26bcef84b573804e4761d4c8390e0ca4 to your computer and use it in GitHub Desktop.
public IHttpActionResult CreateTrigger()
{
logger.Error("start point of create trigger");
try
{
new CheckMode();
}
catch (Exception ex)
{
logger.Error("Message: "+ex.Message + Environment.NewLine + "Stack Trace: "+ ex.StackTrace);
}
logger.Error("end point of create trigger");
return Ok();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment