Skip to content

yagasoft/DynamicsCrm-CrmLogger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DynamicsCrm-CrmLogger

Join the chat at https://gitter.im/yagasoft/DynamicsCrm-CrmLogger


A CRM solution that provides a lot of details when logging from plugins. It provides a tree view of function calls as well.

Features

  • Log each whole execution in its own record
    • Log works in plugins and custom steps
  • Defers log to the end of the execution for improved performance
  • Create parent log container and defers creating entries to the async job for performance
  • Option for logging function start and end (manually)
    • For automatic logging, use CrmLogger.Fody from NuGet
  • Automatically parses the exception details on passing an Exception object to the log

Install

Guide

  • Set the log level in the Generic Configuration entity, on the 'Logging' form
  • Go to the Log entity view to view the logs

I will post a complete guide soon.

The following is a sample of how to log in a plugin.

public void Execute(IServiceProvider serviceProvider)
{
	var context = (IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext));
	var log = new PluginLogger(serviceProvider);

	try
	{
		log.SetRegarding(context.PrimaryEntityName, context.PrimaryEntityId);
		log.LogExecutionStart();

		log.LogDebug("Starting plugin logic ...");

		log.Log("Some info.");
		Test(log);
		log.LogWarning("Some warning.");

		log.LogDebug("Finished plugin logic.");
	}
	catch (Exception e)
	{
		log.ExecutionFailed();
		log.Log(e);

		throw new InvalidPluginExecutionException(e.Message, e);
	}
	finally
	{
		log.LogExecutionEnd();
	}
}

private void Test(CrmLog log)
{
	log.LogFunctionStart();

	try
	{
		log.Log("Some info.");
	}
	catch (Exception e)
	{
		log.Log(e);
		throw;
	}
	finally
	{
		log.LogFunctionEnd();
	}
}

Changes

  • Check Releases page for the later changes

Copyright © by Ahmed Elsawalhy (Yagasoft) -- GPL v3 Licence