Serilog.Sinks.File 7.0.0-dev-02301

Prefix Reserved
This is a prerelease version of Serilog.Sinks.File.
dotnet add package Serilog.Sinks.File --version 7.0.0-dev-02301
                    
NuGet\Install-Package Serilog.Sinks.File -Version 7.0.0-dev-02301
                    
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.File" Version="7.0.0-dev-02301" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Serilog.Sinks.File" Version="7.0.0-dev-02301" />
                    
Directory.Packages.props
<PackageReference Include="Serilog.Sinks.File" />
                    
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.File --version 7.0.0-dev-02301
                    
#r "nuget: Serilog.Sinks.File, 7.0.0-dev-02301"
                    
#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.File&version=7.0.0-dev-02301&prerelease
                    
Install Serilog.Sinks.File as a Cake Addin
#tool nuget:?package=Serilog.Sinks.File&version=7.0.0-dev-02301&prerelease
                    
Install Serilog.Sinks.File as a Cake Tool

Serilog.Sinks.File Build status NuGet Version Documentation

Writes Serilog events to one or more text files.

Getting started

Install the Serilog.Sinks.File package from NuGet:

dotnet add package Serilog.Sinks.File

To configure the sink in C# code, call WriteTo.File() during logger configuration:

var log = new LoggerConfiguration()
    .WriteTo.File("log.txt", rollingInterval: RollingInterval.Day)
    .CreateLogger();

This will append the time period to the filename, creating a file set like:

log20180631.txt
log20180701.txt
log20180702.txt

Important: By default, only one process may write to a log file at a given time. See Shared log files below for information on multi-process sharing.

Limits

To avoid bringing down apps with runaway disk usage the file sink limits file size to 1GB by default. Once the limit is reached, no further events will be written until the next roll point (see also: Rolling policies below).

The limit can be changed or removed using the fileSizeLimitBytes parameter.

    .WriteTo.File("log.txt", fileSizeLimitBytes: null)

For the same reason, only the most recent 31 files are retained by default (i.e. one long month). To change or remove this limit, pass the retainedFileCountLimit parameter.

    .WriteTo.File("log.txt", rollingInterval: RollingInterval.Day, retainedFileCountLimit: null)

Rolling policies

To create a log file per day or other time period, specify a rollingInterval as shown in the examples above.

To roll when the file reaches fileSizeLimitBytes, specify rollOnFileSizeLimit:

    .WriteTo.File("log.txt", rollOnFileSizeLimit: true)

This will create a file set like:

log.txt
log_001.txt
log_002.txt

Specifying both rollingInterval and rollOnFileSizeLimit will cause both policies to be applied, while specifying neither will result in all events being written to a single file.

Old files will be cleaned up as per retainedFileCountLimit - the default is 31.

XML <appSettings> configuration

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

Install-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 file sink assembly and required path format under the <appSettings> node:

<configuration>
  <appSettings>
    <add key="serilog:using:File" value="Serilog.Sinks.File" />
    <add key="serilog:write-to:File.path" value="log.txt" />

The parameters that can be set through the serilog:write-to:File keys are the method parameters accepted by the WriteTo.File() configuration method. This means, for example, that the fileSizeLimitBytes parameter can be set with:

    <add key="serilog:write-to:File.fileSizeLimitBytes" value="1234567" />

Omitting the value will set the parameter to null:

    <add key="serilog:write-to:File.fileSizeLimitBytes" />

In XML and JSON configuration formats, environment variables can be used in setting values. This means, for instance, that the log file path can be based on TMP or APPDATA:

    <add key="serilog:write-to:File.path" value="%APPDATA%\MyApp\log.txt" />

JSON appsettings.json configuration

To use the file 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:

Install-Package Serilog.Settings.Configuration

Instead of configuring the file 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": "File", "Args": { "path": "log.txt", "rollingInterval": "Day" } }
    ]
  }
}

See the XML <appSettings> example above for a discussion of available Args options.

Controlling event formatting

The file sink creates events in a fixed text format by default:

2018-07-06 09:02:17.148 +10:00 [INF] HTTP GET / responded 200 in 1994 ms

The format is controlled using an output template, which the file configuration method accepts as an outputTemplate parameter.

The default format above corresponds to an output template like:

  .WriteTo.File("log.txt",
    outputTemplate: "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level:u3}] {Message:lj}{NewLine}{Exception}")
JSON event formatting

To write events to the file in an alternative format such as JSON, pass an ITextFormatter as the first argument:

    // Install-Package Serilog.Formatting.Compact
    .WriteTo.File(new CompactJsonFormatter(), "log.txt")

Shared log files

To enable multi-process shared log files, set shared to true:

    .WriteTo.File("log.txt", shared: true)

Auditing

The file sink can operate as an audit file through AuditTo:

    .AuditTo.File("audit.txt")

Only a limited subset of configuration options are currently available in this mode.

Performance

By default, the file sink will flush each event written through it to disk. To improve write performance, specifying buffered: true will permit the underlying stream to buffer writes.

The Serilog.Sinks.Async package can be used to wrap the file sink and perform all disk access on a background worker thread.

Extensibility

FileLifecycleHooks provide an extensibility point that allows hooking into different parts of the life cycle of a log file.

You can create a hook by extending from FileLifecycleHooks and overriding the OnFileOpened and/or OnFileDeleting methods.

  • OnFileOpened provides access to the underlying stream that log events are written to, before Serilog begins writing events. You can use this to write your own data to the stream (for example, to write a header row), or to wrap the stream in another stream (for example, to add buffering, compression or encryption)

  • OnFileDeleting provides a means to work with obsolete rolling log files, before they are deleted by Serilog's retention mechanism - for example, to archive log files to another location

Available hooks:

Copyright © 2016 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 is compatible.  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.3K)

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

Package Downloads
Serilog.AspNetCore

Serilog support for ASP.NET Core logging

Serilog.Sinks.RollingFile

The rolling file sink for Serilog

Serilog.Sinks.Seq

A Serilog sink that writes events to Seq using newline-delimited JSON and HTTP/HTTPS.

Serilog.Sinks.Elasticsearch

Serilog sink for Elasticsearch

Serilog.Sinks.Http

A Serilog sink sending log events over HTTP.

GitHub repositories (410)

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

Repository Stars
jellyfin/jellyfin
The Free Software Media System - Server Backend & API
netchx/netch
A simple proxy client
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
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.
gui-cs/Terminal.Gui
Cross Platform Terminal UI toolkit for .NET
felixse/FluentTerminal
A Terminal Emulator based on UWP and web technologies.
babalae/better-genshin-impact
📦BetterGI · 更好的原神 - 自动拾取 | 自动剧情 | 全自动钓鱼(AI) | 全自动七圣召唤 | 自动伐木 | 自动刷本 | 自动采集/挖矿/锄地 | 一条龙 | 全连音游 - UI Automation Testing Tools For Genshin Impact
microsoft/ailab
Experience, Learn and Code the latest breakthrough innovations with Microsoft AI
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
btcpayserver/btcpayserver
Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor.
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.)
TechnitiumSoftware/DnsServer
Technitium DNS Server
anjoy8/Blog.Core
💖 ASP.NET Core 8.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:
umbraco/Umbraco-CMS
Umbraco is a free and open source .NET content management system helping you deliver delightful digital experiences.
dotnetcore/Util
Util是一个.Net平台下的应用框架,旨在提升中小团队的开发能力,由工具类、分层架构基类、Ui组件,配套代码生成模板,权限等组成。
Sophia-Community/SophiApp
:zap: The most powerful open source tweaker on GitHub for fine-tuning Windows 10 & Windows 11
Version Downloads Last updated
7.0.0-dev-02301 7,493 a month ago
6.0.0 24,524,170 10 months ago
6.0.0-dev-00979 3,395 10 months ago
5.0.1-dev-00976 6,578 10 months ago
5.0.1-dev-00972 242,592 12/26/2023
5.0.1-dev-00968 440,531 9/28/2023
5.0.1-dev-00967 819 9/28/2023
5.0.1-dev-00966 795 9/28/2023
5.0.1-dev-00947 1,204,834 9/20/2021
5.0.0 304,680,709 6/25/2021
5.0.0-dev-00942 4,205 6/22/2021
5.0.0-dev-00940 5,768 6/22/2021
5.0.0-dev-00938 1,239 6/22/2021
5.0.0-dev-00935 1,166 6/22/2021
5.0.0-dev-00933 1,797 6/22/2021
5.0.0-dev-00930 1,323 6/22/2021
5.0.0-dev-00927 1,281 6/22/2021
5.0.0-dev-00920 5,740 6/15/2021
5.0.0-dev-00909 3,973,490 1/4/2021
5.0.0-dev-00905 230,398 11/10/2020
5.0.0-dev-00901 3,593 11/9/2020
5.0.0-dev-00887 338,991 7/23/2020
5.0.0-dev-00880 121,127 5/15/2020
5.0.0-dev-00876 21,597 4/29/2020
5.0.0-dev-00873 10,963 4/20/2020
5.0.0-dev-00870 28,710 4/13/2020
5.0.0-dev-00864 127,661 2/4/2020
5.0.0-dev-00862 26,355 2/4/2020
4.1.0 163,401,371 10/17/2019
4.1.0-dev-00860 1,644 12/16/2019
4.1.0-dev-00850 135,288 8/25/2019
4.1.0-dev-00847 76,832 7/16/2019
4.1.0-dev-00838 98,904 5/2/2019
4.1.0-dev-00833 9,754 4/22/2019
4.1.0-dev-00817 36,039 3/13/2019
4.1.0-dev-00806 19,679 1/17/2019
4.0.1-dev-00801 110,591 11/15/2018
4.0.1-dev-00798 85,832 9/21/2018
4.0.1-dev-00796 191,672 5/9/2018
4.0.1-dev-00795 27,887 3/6/2018
4.0.1-dev-00792 4,081 2/21/2018
4.0.1-dev-00790 31,231 11/29/2017
4.0.0 143,362,621 10/30/2017
4.0.0-dev-00788 3,773 10/16/2017
3.2.0 57,550,955 1/3/2017
3.2.0-dev-00766 2,906 11/29/2016
3.2.0-dev-00764 2,163 11/29/2016
3.2.0-dev-00762 5,636 11/27/2016
3.1.2-dev-00761 2,904 11/27/2016
3.1.1 281,017 11/15/2016
3.1.1-dev-00754 2,105 11/14/2016
3.1.0 1,454,185 10/9/2016
3.1.0-dev-00750 2,060 10/9/2016
3.1.0-dev-00747 2,861 10/6/2016
3.0.1 776,334 8/31/2016
3.0.1-dev-00741 2,098 8/30/2016
3.0.1-dev-00739 2,124 8/26/2016
3.0.0 256,218 8/26/2016
3.0.0-dev-00736 2,088 8/26/2016
3.0.0-dev-00735 2,977 8/19/2016
2.3.0-dev-00733 2,057 8/19/2016
2.3.0-dev-00729 2,078 8/17/2016
2.2.0 2,660,546 7/28/2016
2.2.0-dev-00725 2,415 7/28/2016
2.1.1-dev-00724 2,508 7/28/2016
2.1.0 129,693 7/4/2016
2.1.0-dev-714 2,127 7/4/2016
2.1.0-dev-713 2,098 7/4/2016
2.1.0-dev-00716 2,086 7/4/2016
2.0.0 685,396 6/28/2016
2.0.0-rc-706 4,075 5/17/2016
2.0.0-rc-704 13,071 5/17/2016
2.0.0-beta-700 7,117 3/23/2016
2.0.0-beta-519 2,398 3/16/2016
2.0.0-beta-516 2,260 3/15/2016
2.0.0-beta-513 2,053 3/15/2016
2.0.0-beta-511 2,041 3/14/2016
2.0.0-beta-509 2,176 3/13/2016
2.0.0-beta-507 7,007 3/1/2016
2.0.0-beta-505 4,786 2/25/2016
2.0.0-beta-502 2,409 2/22/2016
2.0.0-beta-499 2,176 2/21/2016
2.0.0-beta-495 2,127 2/19/2016
2.0.0-beta-494 2,026 2/18/2016
2.0.0-beta-493 2,061 2/18/2016
2.0.0-beta-487 2,200 2/16/2016
2.0.0-beta-486 2,732 2/11/2016
2.0.0-beta-479 2,097 2/9/2016
2.0.0-beta-478 2,317 2/9/2016
2.0.0-beta-465 24,405 1/26/2016