Serilog.Sinks.MFilesObject 1.0.0

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

// Install Serilog.Sinks.MFilesObject as a Cake Tool
#tool nuget:?package=Serilog.Sinks.MFilesObject&version=1.0.0

Serilog.Sinks.MFilesObject is a Serilog sink that logs messages to an M-Files vault; M-Files is a document management/intelligent information system and the logged event messages can be viewed as a daily Log object or Log file using the M-Files desktop app. Use Serilog structured logging in your M-Files console, integration or vault application solutions and see the logging appear as an object in the vault.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 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
1.0.0 1,057 1/30/2022

v1.0.0. First release! January 2022

`Serilog.Sinks.MFilesObject` is a Serilog structured logging sink that uses the M-Files COM API to emit event messages to a "rolling" Log object or Log file in an M-Files vault.         Use Serilog structured logging in your M-Files console, integration and vault application solutions and see the logging appear as an Log object in the vault. Just open the M-Files desktop app and inspect the logging of your solution.

*"M-Files is the intelligent document management system. With M-Files, organizations organize all their documents and information so that they can easily find, manage and secure them. M-Files is the smartest DMS you’ve ever seen."*

This release features two sinks:

* MFilesLogObjectMessageSink: Log to a M-Files Log object with a multi-line text property.
* MFilesLogFileSink: Log to an M-Files Log File.

Both sinks work with batching, where new log messages are appended every 10 seconds, to prevent overly stress on the vault.
The log object is 'rolling': the sinks creates a new Log object in the vault for the current day, eg "Log 2022-01-27". When the multi-line text property reaches its limit of 10000 characters, the sink creates a new Log object for today with an ordinal between braces, eg "Log 2022-01-27 (2)".
The log file is 'rolling' as well, where the sink creates a Log text file document for the current day, eg "Log 2022-01-27.txt".
   

See more details here: https://github.com/victorvogelpoel/Serilog.Sinks.MFilesObject/blob/master/CHANGELOG.md#v1.0.0