FSLogger 5.1.0

dotnet add package FSLogger --version 5.1.0
NuGet\Install-Package FSLogger -Version 5.1.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="FSLogger" Version="5.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FSLogger --version 5.1.0
#r "nuget: FSLogger, 5.1.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.
// Install FSLogger as a Cake Addin
#addin nuget:?package=FSLogger&version=5.1.0

// Install FSLogger as a Cake Tool
#tool nuget:?package=FSLogger&version=5.1.0

F#ing simple logger for F#.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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. 
.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 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.1.0 3,364 8/8/2021
5.0.0 374 4/10/2021
3.1.27 592 8/12/2019
3.0.26 527 8/12/2019
3.0.25 566 5/31/2019
2.5.24 622 3/8/2019
2.4.22 759 9/25/2018
2.2.16 917 8/25/2017
1.3.11 907 6/15/2017
1.2.10 925 4/24/2017
1.1.7 956 11/22/2016

### 5.1.0
* Move to .Net Standard 2.0

### 5.0
* Logging API now expects interpolated strings.
* Old sprintf-style methods are available with a `f` suffix.
* Documentation improvements
* Cleanup + internal code improvements
* Likely some performance gains.

### 4.0
* Added Trace and Notice levels
* Move to netstandard 2.1
* Fix breaking changes in 3.1

### 3.1
* Add fast-path optimization to loggers without a consumers.
* Add API to remove consumers from the logger.

### 3.0
* Use format strings for `appendPath` and `withPath`
* Logger module fixes

### 2.5
* Target net472

### 2.4
* Added Xplat way to get a long time string

### 2.3
* Added StructedFormatDisplay attribute
* Adjusted default string representation
* Improved appendPath function

### 2.2
* Remove extra newline on end of ShortString

### 2.1
* Fix broken ShortString
* Add unit test for ShortString

### 2.0
* Fixed path display to always use '/' separators
* Added short forms
* Renamed Printfn logger to Console logger
* Added colour logger

### 1.3
* Added shorthand calls for log levels.
* Adjusted default PrintFn logger to print to std::err for warn, error and fatal levels.

### 1.2
* Moved to .Net 4.5.2
* Upgraded to Fsharp 4.1

### 1.1
* Enhanced documentation
* Added appendPath function to allow heirarchical pathing.

### 1.0
* Initial release of FSLogger.