Logging in .NET Core: A Comprehensive Guide

Logging in .NET Core: A Comprehensive Guide

05 Jun 2024
Beginner
278 Views
8 min read

Logging in .NET Core

Logging in .NET Core is all about gathering and documenting important data on the operation of your application. This includes keeping track of events such as warnings, errors, and general data, all of which can be very beneficial for monitoring and debugging.

In this Asp.Net Core Tutorial, We will explore more about Logging in .Net Core which will include What is DBContext? Logging in .net core example, Fundamentals of Logging in .NET Core. Let's see it one by one.

What is DbContext?

  • DbContext is the main class in the.NET Core domain that is in charge of communicating with the database via Entity Framework Core.
  • You can query and store data using it as a bridge between your domain or entity classes and the database.
  • It includes methods to control the lifespan of the entities and all the configurations required to connect to a database.

Different Types of Logs

Any application must include logging since it gives you insight into the program's behavior and helps with monitoring and debugging. An application may produce a variety of log types, including:

  • Debug Logs: Detailed data that is usually only useful for problem diagnosis.
  • Information Logs: Messages providing coarse-grained details about the application's progress.
  • Warning Logs: Dangerous circumstances that could cause problems if left unchecked.
  • Error logs: occurrences that might still permit the application to execute are recorded in the error logs.
  • Critical Logs: Severe error incidents resulting in the program being terminated.

Introduction to .NET Core Logging Levels and Their Hierarchy

Logging levels in.NET Core specify the level of severity of the messages that are logged. The levels are as follows, in ascending order of severity:

  • Trace: The most detailed data, usually utilized to identify issues.
  • Debug: Data that can be used to troubleshoot software during development.
  • Details: Broad operational occurrences that do not qualify as errors.
  • Alert: Draw attention to an odd or surprising application flow event.
  • Error: This shows where the current action is failing.
  • Important: Explain a system crash or unrecoverable program.

Configuring Logging in ASP.NET Core

1. Setting Up Logging with the ILoggerFactory Interface

A factory interface called ILoggerFactory is used to generate ILogger objects. It is employed for managing and configuring logging providers.

public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory)
{
    loggerFactory.AddConsole();
    loggerFactory.AddDebug();
}  

2. Registering Logging Providers (Console, File, Debug)

Multiple built-in logging providers, including Console, Debug, and File, are supported by ASP.NET Core. These providers can be registered in the Startup.cs or Program.cs file.
public void ConfigureServices(IServiceCollection services)
{
    services.AddLogging(builder =>
    {
        builder.AddConsole();
        builder.AddDebug();
        builder.AddFile("Logs/myDemoapp-{Date}.txt"); // Requires additional NuGet package
    });
}    

3. Determining the Minimum Log Level for Every Provider

In the appsettings.json file, you may specify the minimum log level for each provider separately.
{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Warning",
      "System": "Warning"
    },
    "Console": {
      "LogLevel": {
        "Default": "Debug"
      }
    }
  }
}

Log Messages Writing

1. ILogger Interface: Writing Log Messages at Various Levels

Log messages are written using the ILogger interface. ILogger<T> can be injected into your classes to log messages at different levels.
public class HomeController : Controller
{
    private readonly ILogger _logger;

    public HomeController(ILogger logger)
    {
        _logger = logger;
    }

    public IActionResult Index()
    {
        _logger.LogInformation("This is information log.");
        _logger.LogWarning("This is warning log.");
        _logger.LogError("This is error log.");
        return View();
    }
}  

2. Adding Contextual Data (such as User IDs and Timestamps) to Log Messages

More context on the state and behavior of the program can be found in log messages.
public void LogWithContext(ILogger logger)
{
    using (logger.BeginScope("User ID: {UserId}", 23456))
    {
        logger.LogInformation("User-specific information.");
    }
}    

3. Organizing Log Messages to Make Them Readable

Debugging may be made much easier with readable log messages. When formatting log messages, use structured logging.
_logger.LogInformation("Order {OrderId} created successfully at {Timestamp}.", orderId, DateTime.Now); 

Consuming Logs

  • It effectively involves setting up a system where logs are collected, aggregated, and analyzed.
  • Tools such as Elasticsearch, Kibana, Application Insights, and Serilog are used to integrate for these purposes.

Selecting the Appropriate Log Level in Various Circumstances

  • Use trace/debug only for debugging and development; do not use it in production.
  • Information: This is used to record the application's overall flow.
  • Use only in the event of unusual or unexpected occurrences that won't force the program to terminate.
  • Error: This log is used to record errors that impede the continuation of the present task.
  • Critical: For serious mistakes that result in the application crashing, use.

Example of Logging in .NET Core

Here's a simple example of setting up and utilizing logging in an application for ASP.NET Core

Example

public class Program
{
    public static void Main(string[] args)
    {
        CreateHostBuilder(args).Build().Run();
    }

    public static IHostBuilder CreateHostBuilder(string[] args) =>
        Host.CreateDefaultBuilder(args)
            .ConfigureLogging(logging =>
            {
                logging.ClearProviders();
                logging.AddConsole();
                logging.AddDebug();
                logging.AddFile("Logs/myapp-{Date}.txt");
                logging.SetMinimumLevel(LogLevel.Information);
            })
            .ConfigureWebHostDefaults(webBuilder =>
            {
                webBuilder.UseStartup();
            });
}

public class HomeController : Controller
{
    private readonly ILogger _logger;

    public HomeController(ILogger logger)
    {
        _logger = logger;
    }

    public IActionResult Index()
    {
        _logger.LogInformation("Accessed Index page at {Timestamp}.", DateTime.Now);
        return View();
    }
}   
Conclusion
You can gain great performance of your application by appropriately configuring and using logging, which will help with maintenance and troubleshooting. I hope you enjoyed learning this article. Your valuable feedback or comments about this article are always welcome. Consider our .NET Certification Training to learn .net from scratch. You can also learn about the ASP.NET Core Course to gain a better understanding of ASP.NET core concepts.

FAQs

Q1. What is logging in .NET Core?

Logging is the process of recording events in software as they happen in real-time, along with other information such as the infrastructure details, time taken to execute, etc.

Q2. What is logging in programming C#?

 It helps debug issues, monitor the application's health, and understand user behavior. 

Q3. What is the default logging in .NET Core?

C:\ProgramData\Contrast\dotnet-core\ on Windows or /var/tmp/contrast/dotnet-core/ on Linux, 

Take our Aspnet skill challenge to evaluate yourself!

In less than 5 minutes, with our skill challenge, you can identify your knowledge gaps and strengths in a given skill.

GET FREE CHALLENGE

Share Article

Live Classes Schedule

Our learn-by-building-project method enables you to build practical/coding experience that sticks. 95% of our learners say they have confidence and remember more when they learn by building real world projects.
ASP.NET Core Certification Training Jul 06 SAT, SUN
Filling Fast
10:00AM to 12:00PM (IST)
Get Details
ASP.NET Core Certification Training Jul 15 MON, WED, FRI
Filling Fast
07:00AM to 08:30AM (IST)
Get Details
Advanced Full-Stack .NET Developer Certification Training Jul 15 MON, WED, FRI
Filling Fast
07:00AM to 08:30AM (IST)
Get Details
.NET Solution Architect Certification Training Jul 28 SAT, SUN
Filling Fast
05:30PM to 07:30PM (IST)
Get Details

Can't find convenient schedule? Let us know

About Author
Shailendra Chauhan (Microsoft MVP, Founder & CEO at Scholarhat by DotNetTricks)

Shailendra Chauhan is the Founder and CEO at ScholarHat by DotNetTricks which is a brand when it comes to e-Learning. He provides training and consultation over an array of technologies like Cloud, .NET, Angular, React, Node, Microservices, Containers and Mobile Apps development. He has been awarded Microsoft MVP 8th time in a row (2016-2023). He has changed many lives with his writings and unique training programs. He has a number of most sought-after books to his name which has helped job aspirants in cracking tough interviews with ease.
Accept cookies & close this