![]() |
VOOZH | about |
dotnet add package Serilog.Sinks.File --version 7.0.0
NuGet\Install-Package Serilog.Sinks.File -Version 7.0.0
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageVersion Include="Serilog.Sinks.File" Version="7.0.0" />Directory.Packages.props
<PackageReference Include="Serilog.Sinks.File" />Project file
paket add Serilog.Sinks.File --version 7.0.0
#r "nuget: Serilog.Sinks.File, 7.0.0"
#:package Serilog.Sinks.File@7.0.0
#addin nuget:?package=Serilog.Sinks.File&version=7.0.0Install as a Cake Addin
#tool nuget:?package=Serilog.Sinks.File&version=7.0.0Install as a Cake Tool
Writes Serilog events to one or more text files.
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.
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)
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.
<appSettings> configurationTo 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" />
appsettings.json configurationTo 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.
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}")
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")
To enable multi-process shared log files, set shared to true:
.WriteTo.File("log.txt", shared: true)
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.
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.
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 | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 is compatible. net463 net463 was computed. net47 net47 was computed. net471 net471 is compatible. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
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.Seq
A Serilog sink that writes events to Seq using newline-delimited JSON and HTTP/HTTPS. |
|
|
Serilog.Sinks.RollingFile
The rolling file sink for Serilog |
|
|
Serilog.Sinks.Elasticsearch
Serilog sink for Elasticsearch |
|
|
Serilog.Sinks.Http
A Serilog sink sending log events over HTTP. |
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
|
|
|
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
|
|
|
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.
|
|
|
babalae/better-genshin-impact
📦BetterGI · 更好的原神 - 自动拾取 | 自动剧情 | 全自动钓鱼(AI) | 全自动七圣召唤 | 自动伐木 | 自动刷本 | 自动采集/挖矿/锄地 | 一条龙 | 全连音游 | 自动烹饪 - UI Automation Testing Tools For Genshin Impact
|
|
|
gui-cs/Terminal.Gui
Cross Platform Terminal UI toolkit for .NET
|
|
|
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.
|
|
|
felixse/FluentTerminal
A Terminal Emulator based on UWP and web technologies.
|
|
|
TechnitiumSoftware/DnsServer
Technitium DNS Server
|
|
|
RayWangQvQ/BiliBiliToolPro
B 站(bilibili)自动任务工具,支持docker、青龙、k8s等多种部署方式。全面拥抱AI。敏感肌也能用。
|
|
|
microsoft/ailab
Experience, Learn and Code the latest breakthrough innovations with Microsoft AI
|
|
|
subhra74/xdm
Powerfull download accelerator and video downloader
|
|
|
btcpayserver/btcpayserver
Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor.
|
|
|
STranslate/STranslate
A ready-to-go translation ocr tool developed with WPF/WPF 开发的一款即用即走的翻译、OCR工具
|
|
| beeradmoore/dlss-swapper | |
|
Sylinko/Everywhere
On-screen aware AI assistant for your desktop. Uses current app context, multiple LLMs, and MCP tools to help you act across apps.
|
|
|
kurrent-io/KurrentDB
KurrentDB is a database that's engineered for modern software applications and event-driven architectures. Its event-native design simplifies data modeling and preserves data integrity while the integrated streaming engine solves distributed messaging challenges and ensures data consistency.
|
|
|
win-acme/win-acme
Automate SSL/TLS certificates on Windows with ease
|
|
|
rmcrackan/Libation
Libation: Liberate your Library
|
|
|
ramjke/Translumo
Advanced real-time screen translator for games, hardcoded subtitles in videos, static text and etc.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 8.0.0-nblumhardt-02322 | 47,231 | 3/7/2026 |
| 8.0.0-dev-02331 | 602 | 4/9/2026 |
| 8.0.0-dev-02323 | 331 | 3/9/2026 |
| 8.0.0-dev-02318 | 95,853 | 12/9/2025 |
| 7.0.1-dev-02315 | 40,142 | 11/4/2025 |
| 7.0.0 | 60,062,517 | 4/28/2025 |
| 7.0.0-dev-02301 | 99,541 | 3/12/2025 |
| 6.0.0 | 130,406,670 | 6/22/2024 |
| 6.0.0-dev-00979 | 4,307 | 6/19/2024 |
| 5.0.1-dev-00976 | 17,935 | 6/17/2024 |
| 5.0.1-dev-00972 | 446,251 | 12/26/2023 |
| 5.0.1-dev-00968 | 771,932 | 9/28/2023 |
| 5.0.1-dev-00967 | 1,478 | 9/28/2023 |
| 5.0.1-dev-00966 | 1,480 | 9/28/2023 |
| 5.0.1-dev-00947 | 1,523,775 | 9/20/2021 |
| 5.0.0 | 464,624,028 | 6/25/2021 |
| 5.0.0-dev-00942 | 5,405 | 6/22/2021 |
| 5.0.0-dev-00940 | 8,449 | 6/22/2021 |
| 5.0.0-dev-00938 | 1,585 | 6/22/2021 |
| 5.0.0-dev-00935 | 1,535 | 6/22/2021 |