Pixelo.Utils.CustomLogger
1.0.8
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Pixelo.Utils.CustomLogger --version 1.0.8
NuGet\Install-Package Pixelo.Utils.CustomLogger -Version 1.0.8
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="Pixelo.Utils.CustomLogger" Version="1.0.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Pixelo.Utils.CustomLogger --version 1.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Pixelo.Utils.CustomLogger, 1.0.8"
#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 Pixelo.Utils.CustomLogger as a Cake Addin #addin nuget:?package=Pixelo.Utils.CustomLogger&version=1.0.8 // Install Pixelo.Utils.CustomLogger as a Cake Tool #tool nuget:?package=Pixelo.Utils.CustomLogger&version=1.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
INTRODUCTION
With this library you can add registry for any activities with 4 different channels :
- Write on file
- Write on DB
- Send Email
- Send telegram on Bot
HOW TO
To set parameters you need to set two things:
- You must edit appsettings.json on your WebApi ( this object must insert inside Logging, like this ) :
"CustomLogger": {
"Options": {
"schemaNameTable": "",
"ApplicationName": "Design Pattern",
"ConnectionString": "Data Source=<YOURIP>;Initial Catalog=<YOURDB>;Persist Security Info=True;User ID=sa;Password=<YOURPASSWORD>;",
"fileOptions": {
"FilePath": "log_{date}.log",
"FolderPath": "C:\\logs\\"
},
"MailSetting": {
"SMTPassword": "SMTPassword",
"SMTPEnabledSSL": true,
"SMTPHOST": "SMTPHOST",
"SMTPMitt": "SMTPMitt",
"SMTPMittDisplayName": "Design Pattern Alerts",
"SMTPPORT": 587,
"SMTPSendEmailTo": "a.chiodo@pixelo.it",
"xsltPath": "C:\\Source\\Repos\\CustomLogger\\WebApiTest\\xslt\\mail.xslt",
"SecondsCachingBetweenMessagesOnSameApplication": 6
},
"telegramOptions": {
"TotRetry": [
"00:00:10.0000000",
"00:00:20.0000000"
],
"httpStatusRetry": 429,
"SecondsCachingBetweenMessagesOnSameApplication": 10,
"chatId": "55555555555",
"Api_Key": "387563510:AAENrZ3EOWksWA_5a001xxxxxxxxxxxxxxx"
},
"LogLevels": {
"Information": [
"SendToFile"
],
"Warning": [
"SendToFile",
"SendToDB"
],
"Error": [
"SendToFile",
"SendToDB",
"SendEmail"
],
"Critical": [
"SendToFile",
"SendToDB",
"SendEmail",
"SendTelegram"
]
}
}
}
Add on program.cs this section :
builder.Logging.AddCustomLogger(options => {
builder
.Configuration
.GetSection("Logging")
.GetSection("CustomLogger")
.GetSection("Options")
.Bind(options);
CONSIDERATIONS
- About param SecondsCachingBetweenMessagesOnSameApplication this means how many seconds must be wait to send another message to avoid block of the Telegram Bot or SMTP Server
TotRetry
is used on Telegram message when response bot is http 429 (Too many requests: retry later) in this case with parameterhttpStatusRetry
we retry with arrayTotRetry
- To create a Bot telegram is vey simple, you can find an explanation here : https://learn.microsoft.com/en-us/azure/bot-service/bot-service-channel-connect-telegram?view=azure-bot-service-4.0
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Microsoft.Extensions.Caching.Memory (>= 7.0.0)
- Microsoft.Extensions.Logging (>= 7.0.0)
- Polly (>= 7.2.3)
- System.Data.SqlClient (>= 4.8.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Aggiornati i NameSpace