Errors and Logs: Overview

Stackify’s Errors and Logs API enables you to get more from what you’re logging. Simply plug in a Stackify appender into your existing framework, or log your messages directly to Retrace without a framework via the Stackify API. Once properly configured, you will be able to get more contextual information about your exceptions, view your app’s log messages, begin correlating exceptions …

Errors and Logs: Configure log4net

You can get started logging with log4net with minimal changes to your project. You essentially just add a few DLLs to your project and then add some configuration details to your .config file specifying an additional (or replacement) log appender.  The appender is available via Nuget in Visual Studio and additional documentation can be found on our Github page. Getting …

Errors and Logs: Configure NLog

You can get started logging with the NLog appender with minimal changes to your project. You essentially just add a few DLLs to your project and then add some configuration details to your .config file specifying an additional (or replacement) log appender. The appender is available via Nuget in Visual Studio and additional documentation can be found on our Github …

Errors and Logs: Configure Elmah

You can get started logging your Errors using an Elmah appender with minimal changes to your project. You essentially just add a few DLLs to your project and then add some configuration details to your .config file specifying an additional (or replacement) appender. Getting Started Using NuGet If you’re using NuGet from Visual Studio, you can find and integrate the …

Errors and Logs: Configure log4j

Downloads and Includes The stackify-log-log4j12 project is open source and hosted on GitHub here. Maven artifacts are available in the central Maven repository within a few hours after a new release. https://search.maven.org/#search%7Cga%7C1%7CStackify The group id is com.stackify. The artifact id is stackify-log-log4j12. Substitute the version number you wish to use in the dependency snippet below. <dependency> <groupId>com.stackify</groupId> <artifactId>stackify-log-log4j12</artifactId> <version>INSERT_LATEST_MAVEN_CENTRAL_VERSION</version> </dependency> …

Errors and Logs: Configure Logback

Downloads and Includes The stackify-log-logback project is open source and hosted on GitHub here. Maven artifacts are available in the central Maven repository within a few hours after a new release. https://search.maven.org/#search%7Cga%7C1%7CStackify The group id is com.stackify. The artifact id is stackify-log-logback. Substitute the version number you wish to use in the dependency snippet below. <dependency> <groupId>com.stackify</groupId> <artifactId>stackify-log-logback</artifactId> <version>1.1.3</version> </dependency> …