Found 135 packages
A source code package designed primarily for library and framework authors who want dependency free logging support in their component. Also useful in end applications. As of 5.0.0 it works with NetStandard2.0 and SDK projects. For legacy csproj format support use 4.x versions. If you are a library or framework author and you wish to provide logging support in your component there are a number of options: 1) Depend on a specific logging framework 2) Depend on Common.Logging 3) Implement your own ILog interface and make your consumers wire it up. Option 1 is not desirable because it forces your users to use a particular framework. Option 2 is not desirable because it will add yet more nuget package dependencies and project references with associated versioning concerns in addition to wiring up. Option 3 is desirable because it is dependency free but requires that your users to remember to write an adapter and wire things up. This package is a variation of option 3 but will automatically wire things up too. - It will add an ILog, ILogProvider etc to YourRootNamespace.Logging - ILog is one method to implement - Using optimized reflection, it transparently supports NLog, Log4Net, Serilog and Loupe without any wiring up required by an end user, if the end user simply has a reference to any of these logging frameworks.
Classes for filing the results in a SARIF log file as work items in a system such as GitHub or AzureDevOps.
this.Log is a Logging Extension that works in all code locations. This package by itself only brings the logging extension and allows you to call this.Log().Debug, etc. What it doesn't bring though is a logging facility. Please search nuget for this.Log to see the facilities.
A log4net appender for Splunk Http Event Collector (HEC) Sender Note(s): - Setup Note: Will fail to log if using https without a valid SSL cert. - This package uses the log4net.Appender namespace but is NOT an official log4net project package. - Includes modifed code from Splunk.Logging.Common to work with .Net Standard / .Net Core.
Simple and easy to use the log class library package
An unofficial packaging of Log4Net to suit our needs -- specifically, allowing it's use on the .NET 3.5 *Client* framework, rather than .NET 2.0, which has a dependency on System.Web... Contact me know when an official package of NuGet with less framework requirements (don't hold your breath) becomes available so that I can remove this one. This package is based on the good investigation work done here: http://bit.ly/kcMjwv
This package provides an API containing methods to implement VisualGuard workflow. (ex. email notification when new user is created/ email notification when user authentication is failed ) Note: Please make sure you are using the same nuget package versions for your applications as of VisualGuard WinConsole. If you have the Visual-Guard WinConsole Runtime version '2024.7.2602.19', you must have all packages with version '2024.7.2602.19' About VisualGuard: Visual Guard is a modular solution, which covers most application security requirements, from application-level security systems to Corporate Identity and Access Management Solutions. It provides : -> Security framework for application developers -> Access control for business applications -> Identity Access Management -> Powerful user accounts and groups management features -> Log data processing via the application -> Monitor and Audit sensitive activities -> Send email notifications for important events For details, Please visit: https://www.visual-guard.com/ You must download VisualGuard WinConsole to secure your applications. Download Visual Guard 2024.7 Express Edition (Free) : http://visual-guard.com/VG-Express Supported Platforms: ->.NET Standard 2.0 or Higher ->.NET Framework 4.7.2 or Higher ->.NET Core 2.0 or higher -> Angular 7.0 or higher Package depending on Database Storage ----------------------- Download nuget package responsible for "Database Operations" depending on the type of your storage. (SQLServer, Oracle, File etc) Ex. If your VisualGuard repository is in SQLServer, choose Novalys.VisualGuard.Security.SQLServer nuget package. Packages: -> Novalys.VisualGuard.Security.SQLServer -> Novalys.VisualGuard.Security.Oracle -> Novalys.VisualGuard.Security.File -> Novalys.VisualGuard.Security.VGServerClient Package depending on Technology of Application ---------------------------------------- Download nuget package responsible for securing specific type of application (Winform, WPF, WebForm, etc) Ex. If your application is WPF application, choose Novalys.VisualGuard.Security.WPF nuget package. Packages: -> Novalys.VisualGuard.Security.Winform -> Novalys.VisualGuard.Security.WPF -> Novalys.VisualGuard.Security.WebForm -> Novalys.VisualGuard.Security.WebService -> Novalys.VisualGuard.Security.WebMvc -> Novalys.VisualGuard.Security.CRM -> Novalys.VisualGuard.Security.SharePoint -> Novalys.VisualGuard.Security.WebForm.Core -> Novalys.VisualGuard.Security.Angular Package depending on Framework of Application ------------------------------------------------- Download nuget package responsible for securing application with specific framework type(.net framework or .net core etc) Ex. If your application is built with .net framework, choose Novalys.VisualGuard.Security.NetFramework nuget package) Packages: -> Novalys.VisualGuard.Security.NetFramework -> Novalys.VisualGuard.Security.Core
Help to improve you work. Upgrade log:
Easy Serilog usage
Log4Net Library for Banzai
Live Log Monitor, .net core Console app, connect log source via named pipe, work with log4net
This logging library makes large use of enterprise correlation. In a lot of applications that incorporate various small and large services, it is often important to correlate events that happen across these services. It gives us a business workflow view of the various events that happen in the application, its components and services. This library provide operation and activity ID management and propagation. The main difference with this library over other is that you can configure each type of log separately. You can enable fatal, error, warning, debugging, informational, progress and sensitive data logging all independently of each other. This is more flexible than the concept of minimum level logging, such as that in log4net or serilog e.g. enabling one warning in this libraries will enable error and fatal logging as well. This library allows you to set those settings independently of each other. The SqlLogger maps AdditionalData to table columns, where the key of the dictionary entry is the column name and the value is serialised to JSON as the column value. MetaData is serialised to a single JSON value stored in the MetaData column. This means you can store data such as a User ID or Job ID in a separate column so you can filter more efficiently with indexes and partitions. TraceLogger and ConsoleLogger both seralise and format all information into a single string. The MultiLogger allows you to configure several different loggers to be used at once with different settings for each logger. Usage is in the form of: static void Main() { ICorrelationIdHelper correlationIdHelper = new WebCorrelationIdHelper(); // This value will be set automatically to all logs within this thread... so long as System.Threading.Tasks.Task.Factory.StartNew is used. correlationIdHelper.SetCorrelationId(Guid.NewGuid()); DoSyncWork(); DoAsyncWork(); } static void DoSyncWork() { ILogger logger = new SqlLogger(); logger.LogDebug("Some technical debugging details."); } static void DoAsyncWork() { System.Threading.Tasks.Task.Factory.StartNew(() => { ILogger logger = new ConsoleLogger(); logger.LogInfo("An informative message."); }); } This package installs cdmdotnet.Logging.dll with includes core logging functionality. Other packages depend on cdmdotnet.Logging for specific implementations.
This integration library adds support for LibLog to Topshelf. LibLog enables dependency free logging. It contains transparent builtin support for NLog, Log4Net, EntLib Logging and SeriLog or allows the user to define a custom provider. Works with .NET 4 and higher.
Simple LogEntries NLog target that works on Linux. Uses SSL, multiplexes multiple targets (even with different tokens) into the same connection, is asynchronous and the token can be set in an environment variable as well.
A simple high-peformance portable logging framework for .NET, which follows simple convention over configuration, works with PCL.
Log2NET is a tool for collecting log to databases or files for .NET and .NETCore. This component automatically collects the system's running logs (server operation, online statistics, etc.), exception logs. programmers can also add custom logs. This component supports.NET platform and.NETCore platform, supports file, sql server, oracle, mysql, and can be easily extended to other databases.
log4net Appenders that work with AWS Services
Plugins,Auth,Entity,Extention,Helper,Mvc,Log,Infrastructure,Specifications,Dapper,ModBus,PLC,Socket,Tencent,Weixin等DotNet Core基础类大全