StackShareStackShare
Follow on
StackShare

Discover and share technology stacks from companies around the world.

Follow on

© 2025 StackShare. All rights reserved.

Product

  • Stacks
  • Tools
  • Feed

Company

  • About
  • Contact

Legal

  • Privacy Policy
  • Terms of Service
  1. Stackups
  2. Application & Data
  3. Languages
  4. Nuget Packages
  5. cdmdotnet.Logging vs Serilog.Extensions.Logging

cdmdotnet.Logging vs Serilog.Extensions.Logging

OverviewComparisonAlternatives

Overview

Serilog.Extensions.Logging
Serilog.Extensions.Logging
Stacks869
Followers0
Votes0
GitHub Stars290
Forks91
cdmdotnet.Logging
cdmdotnet.Logging
Stacks1
Followers0
Votes0
GitHub Stars0
Forks2

Share your Stack

Help developers discover the tools you use. Get visibility for your team's tech choices and contribute to the community's knowledge.

View Docs
CLI (Node.js)
or
Manual

Detailed Comparison

Serilog.Extensions.Logging
Serilog.Extensions.Logging
cdmdotnet.Logging
cdmdotnet.Logging

Low-level Serilog provider for Microsoft.Extensions.Logging.

This logging library makes large use of enterprise correlation. In a lot of applications that incorporate various small and large services, it is often important to correlate events that happen across these services. It gives us a business workflow view of the various events that happen in the application, its components and services. This library provide operation and activity ID management and propagation. The main difference with this library over other is that you can configure each type of log separately. You can enable fatal, error, warning, debugging, informational, progress and sensitive data logging all independently of each other. This is more flexible than the concept of minimum level logging, such as that in log4net or serilog e.g. enabling one warning in this libraries will enable error and fatal logging as well. This library allows you to set those settings independently of each other. The SqlLogger maps AdditionalData to table columns, where the key of the dictionary entry is the column name and the value is serialised to JSON as the column value. MetaData is serialised to a single JSON value stored in the MetaData column. This means you can store data such as a User ID or Job ID in a separate column so you can filter more efficiently with indexes and partitions. TraceLogger and ConsoleLogger both seralise and format all information into a single string. The MultiLogger allows you to configure several different loggers to be used at once with different settings for each logger. Usage is in the form of: static void Main() {   ICorrelationIdHelper correlationIdHelper = new WebCorrelationIdHelper();   // This value will be set automatically to all logs within this thread... so long as System.Threading.Tasks.Task.Factory.StartNew is used.   correlationIdHelper.SetCorrelationId(Guid.NewGuid());   DoSyncWork();   DoAsyncWork(); } static void DoSyncWork() {   ILogger logger = new SqlLogger();   logger.LogDebug("Some technical debugging details."); } static void DoAsyncWork() {   System.Threading.Tasks.Task.Factory.StartNew(() => {     ILogger logger = new ConsoleLogger();     logger.LogInfo("An informative message.");   }); } This package installs cdmdotnet.Logging.dll with includes core logging functionality. Other packages depend on cdmdotnet.Logging for specific implementations.

Statistics
GitHub Stars
290
GitHub Stars
0
GitHub Forks
91
GitHub Forks
2
Stacks
869
Stacks
1
Followers
0
Followers
0
Votes
0
Votes
0

What are some alternatives to Serilog.Extensions.Logging, cdmdotnet.Logging?

Amazon.CDK.AWS.KMS

Amazon.CDK.AWS.KMS

CDK Constructs for AWS KMS (Stability: Stable).

Newtonsoft.Json

Newtonsoft.Json

Json.NET is a popular high-performance JSON framework for .NET.

jQuery

jQuery

JQuery is a new kind of JavaScript Library. jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript. NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/.

xunit

xunit

XUnit.net is a developer testing framework, built to support Test Driven Development, with a design goal of extreme simplicity and alignment with framework features. Installing this package installs xunit.core, xunit.assert, and xunit.analyzers.

xunit.runner.visualstudio

xunit.runner.visualstudio

Visual Studio 2012+ Test Explorer runner for the xUnit.net framework. Capable of running xUnit.net v1.9.2 and v2.0+ tests. Supports .NET 2.0 or later, .NET Core 1.0 or later, and Universal Windows 10.0 or later.

Moq

Moq

Moq is the most popular and friendly mocking framework for .NET.

Microsoft.AspNet.WebApi.Client

Microsoft.AspNet.WebApi.Client

This package adds support for formatting and content negotiation to System.Net.Http. It includes support for JSON, XML, and form URL encoded data.

Serilog

Serilog

Simple .NET logging with fully-structured events.

Microsoft.Extensions.Configuration.Json

Microsoft.Extensions.Configuration.Json

JSON configuration provider implementation for Microsoft.Extensions.Configuration.

Microsoft.Web.Infrastructure

Microsoft.Web.Infrastructure

This package contains the Microsoft.Web.Infrastructure assembly that lets you dynamically register HTTP modules at run time.

Related Comparisons

Bootstrap
Materialize

Bootstrap vs Materialize

Laravel
Django

Django vs Laravel vs Node.js

Bootstrap
Foundation

Bootstrap vs Foundation vs Material UI

Node.js
Spring Boot

Node.js vs Spring-Boot

Liquibase
Flyway

Flyway vs Liquibase