Getting Started

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:

  1. Include the LlamaLogger.Core NuGet package in your project
  2. Create an instance of the LlamaLoggerClient using your project API key
  3. Start logging exceptions
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);
}
An error has occurred. This application may no longer respond until reloaded. Reload 🗙