ForwardMongoLogger 1.0.3

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

// Install ForwardMongoLogger as a Cake Tool
#tool nuget:?package=ForwardMongoLogger&version=1.0.3

<?xml version="1.0" encoding="utf-8"?>
<configuration>

 <configSections>
   <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
 </configSections>
 <log4net>

   <!--MongoDbAppender-->
   <appender name="UepMongoLogAppender" type="ForwardMongoLogger.MongoDbAppender, ForwardMongoLogger">

     <!--Mention connection string of your mongoDb, If you will not specify any db name, a default database will be created wit the name "MongoLog"-->
     <connectionString value="mongodb://localhost/forwardTestLog"/>

     <!--Specify the collection name in mongoDb, in case of absence, default collection name would be "logs" -->
     <collectionName value="logs"/>

     <!--1.if you are creating a brand new collection, by mentioning this flag true you will have a cappedCollecton created in your db.
      2.if you have an existing collection( which is not capped) by mentionting this flag true, your existing collection will be converted to cappedCollection.Please consider
        this operation may take long to complete, totally depends upon your existing collection documents size -->
     <cappedCollection value="true"/>

     <!-- mention size in bytes for capped collection on file system, when your collection size will reach the thrashold it start overwriting
 default size for capped collection is 4096 bytes-->
     <cappedCollectionSize value="1000000"/>

     <!-- you can also specify maximam number of documents instead collection max size. In case collection documents count will reach to the max documents, it starts overwriting
 default max document size for capped collection is 2000 documents -->
     <maxNumberOfDocuments value="5000"/>


     <!-- you can add/delete field as suites to your project need -->
     <field>
       <name value="timestamp"/>
       <layout type="log4net.Layout.RawTimeStampLayout"/>
     </field>
     <field>
       <name value="level"/>

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
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.3 1,408 8/25/2015
1.0.2 1,093 8/16/2015

support of cappedCollection.