Serilog.Sinks.Console 6.0.0

Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Serilog.Sinks.Console --version 6.0.0
                    
NuGet\Install-Package Serilog.Sinks.Console -Version 6.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Serilog.Sinks.Console" Version="6.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Serilog.Sinks.Console" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Serilog.Sinks.Console --version 6.0.0
                    
#r "nuget: Serilog.Sinks.Console, 6.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Serilog.Sinks.Console&version=6.0.0
                    
Install Serilog.Sinks.Console as a Cake Addin
#tool nuget:?package=Serilog.Sinks.Console&version=6.0.0
                    
Install Serilog.Sinks.Console as a Cake Tool

Serilog.Sinks.Console Build status NuGet Version Documentation Help

A Serilog sink that writes log events to the Windows Console or an ANSI terminal via standard output. Coloring and custom themes are supported, including ANSI 256-color themes on macOS, Linux and Windows 10. The default output is plain text; JSON formatting can be plugged in using a package such as Serilog.Formatting.Compact.

Getting started

To use the console sink, first install the NuGet package:

dotnet add package Serilog.Sinks.Console

Then enable the sink using WriteTo.Console():

Log.Logger = new LoggerConfiguration()
    .WriteTo.Console()
    .CreateLogger();
    
Log.Information("Hello, world!");

Log events will be printed to STDOUT:

[12:50:51 INF] Hello, world!

Themes

The sink will colorize output by default:

Colorized Console

Themes can be specified when configuring the sink:

    .WriteTo.Console(theme: AnsiConsoleTheme.Code)

The following built-in themes are available:

  • ConsoleTheme.None - no styling
  • SystemConsoleTheme.Literate - styled to replicate Serilog.Sinks.Literate, using the System.Console coloring modes supported on all Windows/.NET targets; this is the default when no theme is specified
  • SystemConsoleTheme.Grayscale - a theme using only shades of gray, white, and black
  • AnsiConsoleTheme.Literate - an ANSI 256-color version of the "literate" theme
  • AnsiConsoleTheme.Grayscale - an ANSI 256-color version of the "grayscale" theme
  • AnsiConsoleTheme.Code - an ANSI 256-color Visual Studio Code-inspired theme
  • AnsiConsoleTheme.Sixteen - an ANSI 16-color theme that works well with both light and dark backgrounds

Adding a new theme is straightforward; examples can be found in the SystemConsoleThemes and AnsiConsoleThemes classes.

Output templates

The format of events to the console can be modified using the outputTemplate configuration parameter:

    .WriteTo.Console(
        outputTemplate: "[{Timestamp:HH:mm:ss} {Level:u3}] {Message:lj}{NewLine}{Exception}")

The default template, shown in the example above, uses built-in properties like Timestamp and Level. Properties from events, including those attached using enrichers, can also appear in the output template.

JSON output

The sink can write JSON output instead of plain text. CompactJsonFormatter or RenderedCompactJsonFormatter from Serilog.Formatting.Compact is recommended:

dotnet add package Serilog.Formatting.Compact

Pass a formatter to the Console() configuration method:

    .WriteTo.Console(new RenderedCompactJsonFormatter())

Output theming is not available when custom formatters are used.

XML <appSettings> configuration

To use the console sink with the Serilog.Settings.AppSettings package, first install that package if you haven't already done so:

dotnet add package Serilog.Settings.AppSettings

Instead of configuring the logger in code, call ReadFrom.AppSettings():

var log = new LoggerConfiguration()
    .ReadFrom.AppSettings()
    .CreateLogger();

In your application's App.config or Web.config file, specify the console sink assembly under the <appSettings> node:

<configuration>
  <appSettings>
    <add key="serilog:using:Console" value="Serilog.Sinks.Console" />
    <add key="serilog:write-to:Console" />

To configure the console sink with a different theme and include the SourceContext in the output, change your App.config/Web.config to:

<configuration>
  <appSettings>
    <add key="serilog:using:Console" value="Serilog.Sinks.Console" />
    <add key="serilog:write-to:Console.theme" value="Serilog.Sinks.SystemConsole.Themes.AnsiConsoleTheme::Code, Serilog.Sinks.Console" />
    <add key="serilog:write-to:Console.outputTemplate" value="[{Timestamp:HH:mm:ss} {Level:u3}] {Message:lj} &lt;s:{SourceContext}&gt;{NewLine}{Exception}" />

JSON appsettings.json configuration

To use the console sink with Microsoft.Extensions.Configuration, for example with ASP.NET Core or .NET Core, use the Serilog.Settings.Configuration package. First install that package if you have not already done so:

dotnet add package Serilog.Settings.Configuration

Instead of configuring the sink directly in code, call ReadFrom.Configuration():

var configuration = new ConfigurationBuilder()
    .AddJsonFile("appsettings.json")
    .Build();

var logger = new LoggerConfiguration()
    .ReadFrom.Configuration(configuration)
    .CreateLogger();

In your appsettings.json file, under the Serilog node, :

{
  "Serilog": {
    "WriteTo": [{"Name": "Console"}]
  }
}

To configure the console sink with a different theme and include the SourceContext in the output, change your appsettings.json to:

{
  "Serilog": {
    "WriteTo": [
      {
          "Name": "Console",
          "Args": {
            "theme": "Serilog.Sinks.SystemConsole.Themes.AnsiConsoleTheme::Code, Serilog.Sinks.Console",
            "outputTemplate": "[{Timestamp:HH:mm:ss} {Level:u3}] {Message:lj} <s:{SourceContext}>{NewLine}{Exception}"
          }
      }
    ]
  }
}

Performance

Console logging is synchronous and this can cause bottlenecks in some deployment scenarios. For high-volume console logging, consider using Serilog.Sinks.Async to move console writes to a background thread:

// dotnet add package serilog.sinks.async

Log.Logger = new LoggerConfiguration()
    .WriteTo.Async(wt => wt.Console())
    .CreateLogger();

Contributing

Would you like to help make the Serilog console sink even better? We keep a list of issues that are approachable for newcomers under the up-for-grabs label. Before starting work on a pull request, we suggest commenting on, or raising, an issue on the issue tracker so that we can help and coordinate efforts. For more details check out our contributing guide.

When contributing please keep in mind our Code of Conduct.

Detailed build status

Branch AppVeyor Travis
dev Build status Build Status
main Build status Build Status

Copyright © Serilog Contributors - Provided under the Apache License, Version 2.0.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 is compatible.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1.5K)

Showing the top 5 NuGet packages that depend on Serilog.Sinks.Console:

Package Downloads
Serilog.AspNetCore

Serilog support for ASP.NET Core logging

Serilog.Sinks.ColoredConsole

Now replaced by Serilog.Sinks.Console, please use that package instead. The colored console sink for Serilog

Serilog.Sinks.Literate

Now replaced by Serilog.Sinks.Console, please use that package instead. An alternative colored console sink for Serilog that pretty-prints properties.

Pulumi

The Pulumi .NET SDK lets you write cloud programs in C#, F#, and VB.NET.

IppDotNetSdkForQuickBooksApiV3

The IPP .NET SDK for QuickBooks V3 is a set of .NET classes that make it easier to call QuickBooks APIs. This is the .Net Standard 2.0 version of the .Net SDK

GitHub repositories (427)

Showing the top 20 popular GitHub repositories that depend on Serilog.Sinks.Console:

Repository Stars
jellyfin/jellyfin
The Free Software Media System - Server Backend & API
netchx/netch
A simple proxy client
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
reactiveui/refit
The automatic type-safe REST library for .NET Core, Xamarin and .NET. Heavily inspired by Square's Retrofit library, Refit turns your REST API into a live interface.
dotnet/yarp
A toolkit for developing high-performance HTTP reverse proxy applications.
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
RayWangQvQ/BiliBiliToolPro
B 站(bilibili)自动任务工具,支持docker、青龙、k8s等多种部署方式。敏感肌也能用。
subhra74/xdm
Powerfull download accelerator and video downloader
quartznet/quartznet
Quartz Enterprise Scheduler .NET
fullstackhero/dotnet-starter-kit
Production Grade Cloud-Ready .NET 9 Starter Kit (Web API + Blazor Client) with Multitenancy Support, and Clean/Modular Architecture that saves roughly 200+ Development Hours! All Batteries Included.
kurrent-io/EventStore
EventStoreDB, the event-native database. Designed for Event Sourcing, Event-Driven, and Microservices architectures
win-acme/win-acme
A simple ACME client for Windows (for use with Let's Encrypt et al.)
dotnet/tye
Tye is a tool that makes developing, testing, and deploying microservices and distributed applications easier. Project Tye includes a local orchestrator to make developing microservices easier and the ability to deploy microservices to Kubernetes with minimal configuration.
anjoy8/Blog.Core
💖 ASP.NET Core 8.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:
microsoft/ApplicationInspector
A source code analyzer built for surfacing features of interest and other characteristics to answer the question 'What's in the code?' quickly using static analysis with a json based rules engine. Ideal for scanning components before use or detecting feature level changes.
BililiveRecorder/BililiveRecorder
录播姬 | mikufans 生放送录制
dotnetcore/DotnetSpider
DotnetSpider, a .NET standard web crawling library. It is lightweight, efficient and fast high-level web crawling & scraping framework
timschneeb/GalaxyBudsClient
Unofficial Galaxy Buds Manager for Windows, macOS, Linux, and Android
microsoft/devhome
The new Dev Home experience for Windows!
rmcrackan/Libation
Libation: Liberate your Library
Version Downloads Last updated
6.0.1-dev-00953 16,394 2/19/2025
6.0.0 42,648,684 6/9/2024
6.0.0-dev-00946 351 6/9/2024
5.1.0-dev-00943 340,146 3/17/2024
5.0.2-dev-00942 420 3/17/2024
5.0.1 35,135,286 11/28/2023
5.0.1-dev-00928 810 11/28/2023
5.0.0 56,664,750 11/9/2023
5.0.0-dev-00923 79,490 10/12/2023
4.2.0-dev-00918 286,981 7/21/2023
4.1.1-dev-00917 17,294 7/21/2023
4.1.1-dev-00910 383,405 3/14/2023
4.1.1-dev-00907 261,178 2/3/2023
4.1.1-dev-00901 124,902 1/6/2023
4.1.1-dev-00896 501,363 9/27/2022
4.1.0 84,992,565 9/6/2022
4.1.0-dev-00893 1,155 9/5/2022
4.0.2-dev-00890 573,726 12/22/2021
4.0.1 167,973,888 11/19/2021
4.0.1-dev-00879 85,456 10/21/2021
4.0.1-dev-00876 321,019 8/3/2021
4.0.1-dev-00874 56,866 7/13/2021
4.0.0 23,191,847 7/12/2021
4.0.0-dev-00870 1,283 7/12/2021
4.0.0-dev-00839 5,511,725 1/24/2020
4.0.0-dev-00837 50,774 1/15/2020
4.0.0-dev-00834 728,797 11/22/2019
4.0.0-dev-00832 1,576 11/22/2019
4.0.0-dev-00831 15,216 11/22/2019
3.1.2-dev-00824 550,250 9/13/2019
3.1.2-dev-00823 56,076 8/22/2019
3.1.2-dev-00819 15,543 8/21/2019
3.1.2-dev-00811 21,292 8/15/2019
3.1.2-dev-00806 30,321 8/2/2019
3.1.2-dev-00802 89,456 7/5/2019
3.1.2-dev-00800 53,825 6/24/2019
3.1.2-dev-00798 76,253 5/12/2019
3.1.2-dev-00796 12,808 5/6/2019
3.1.2-dev-00792 85,118 3/14/2019
3.1.2-dev-00788 115,200 1/15/2019
3.1.2-dev-00786 8,576 1/5/2019
3.1.2-dev-00779 237,918 9/22/2018
3.1.2-dev-00777 452,943 5/21/2018
3.1.2-dev-00774 37,781 5/9/2018
3.1.2-dev-00771 18,567 4/29/2018
3.1.1 240,214,516 10/22/2017
3.1.1-dev-00764 2,194 10/22/2017
3.1.1-dev-00762 2,062 10/22/2017
3.1.1-dev-00757 40,587 9/11/2017
3.1.0 868,870 9/11/2017
3.0.2-dev-00753 14,641 8/1/2017
3.0.1 19,016,900 6/23/2017
3.0.1-dev-00749 2,154 6/22/2017
3.0.1-dev-00747 2,170 6/22/2017
3.0.0 283,173 6/21/2017
3.0.0-dev-00737 2,134 6/21/2017
3.0.0-dev-00735 2,121 6/21/2017
3.0.0-dev-00734 2,092 6/19/2017
3.0.0-dev-00732 2,169 6/19/2017
2.2.0-dev-00721 26,805 1/25/2017
2.2.0-dev-00719 4,900 10/25/2016
2.1.0 1,293,426 7/5/2016
2.1.0-dev-00715 2,145 7/5/2016
2.1.0-dev-00713 2,078 7/5/2016
2.0.0 746,243 6/28/2016
2.0.0-rc-709 3,100 5/26/2016
2.0.0-beta-707 2,227 5/17/2016
2.0.0-beta-706 2,004 5/17/2016
2.0.0-beta-700 2,414 3/23/2016
2.0.0-beta-513 2,045 3/15/2016
2.0.0-beta-511 2,037 3/14/2016
2.0.0-beta-509 2,218 3/13/2016
2.0.0-beta-507 2,381 3/1/2016
2.0.0-beta-505 2,422 2/25/2016
2.0.0-beta-502 2,232 2/22/2016
2.0.0-beta-499 2,174 2/21/2016
2.0.0-beta-495 2,100 2/19/2016
2.0.0-beta-494 2,117 2/18/2016
2.0.0-beta-493 2,148 2/18/2016
2.0.0-beta-487 2,062 2/16/2016
2.0.0-beta-486 2,077 2/11/2016
2.0.0-beta-479 2,045 2/9/2016
2.0.0-beta-478 2,077 2/9/2016
2.0.0-beta-465 2,054 1/26/2016
2.0.0-beta-456 2,032 1/20/2016
2.0.0-beta-450 2,332 1/14/2016
2.0.0-beta-449 2,905 1/14/2016