Using only a few lines of code, you can start managing exceptions online. All of your exceptions will be accessible in one place with the option to receive email notifications when new exceptions arrive. To get started, follow these easy steps:
using LlamaLogger.Core;
string apikey = ""; //The project API key located in your Llama Logger account
string version = "1.0"; //Your application's version number
LlamaLoggerClient logger = new LlamaLoggerClient(apikey, version);
try
{
throw new InvalidOperationException("Oops!");
}
catch(Exception ex)
{
logger.LogError(ex);
}