Gleeman.EffectiveLogger.MongoDB
2.0.0
dotnet add package Gleeman.EffectiveLogger.MongoDB --version 2.0.0
NuGet\Install-Package Gleeman.EffectiveLogger.MongoDB -Version 2.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="Gleeman.EffectiveLogger.MongoDB" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Gleeman.EffectiveLogger.MongoDB --version 2.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Gleeman.EffectiveLogger.MongoDB, 2.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 Gleeman.EffectiveLogger.MongoDB as a Cake Addin #addin nuget:?package=Gleeman.EffectiveLogger.MongoDB&version=2.0.0 // Install Gleeman.EffectiveLogger.MongoDB as a Cake Tool #tool nuget:?package=Gleeman.EffectiveLogger.MongoDB&version=2.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Gleeman.EffectiveLogger.MongoDB
Logging to MongoDB
Install packages
dotnet
CLI
$ dotnet add package Gleeman.EffectiveLogger.MongoDB --version 2.0.0
Program.cs
using Gleeman.EffectiveLogger.MongoDB.Configurations;
builder.Services.AddMongoDbLog(opt =>
{
opt.WriteToConsole = true; // true or false
opt.WriteToFile = true; // true or false
opt.FilePath = "File Path here";
opt.FileName = "Api";
opt.MongoConnection = "mongodb://localhost:27017";
opt.CollectionName = "Logs";
opt.DatabaseName = "ApiLog";
});
<hr>
Controller
[ApiController]
[Route("[controller]")]
public class WeatherForecastController : ControllerBase
{
private static readonly string[] Summaries = new[]
{
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
};
private readonly IEffectiveLogger<WeatherForecastController> _logger;
public WeatherForecastController(IEffectiveLogger<WeatherForecastController> logger)
{
_logger = logger;
}
[HttpGet(Name = "GetWeatherForecast")]
public IEnumerable<WeatherForecast> Get()
{
_logger.Info($"{Request.Path} - {Request.Method} - {Response.StatusCode}");
return Enumerable.Range(1, 5).Select(index => new WeatherForecast
{
Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
TemperatureC = Random.Shared.Next(-20, 55),
Summary = Summaries[Random.Shared.Next(Summaries.Length)]
})
.ToArray();
}
}
Console
File
Mongo
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net7.0
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 7.0.0)
- MongoDB.Driver (>= 2.20.0)
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 |
---|---|---|
2.0.0 | 151 | 10/2/2023 |