...

/

Using Logging in a gRPC Application

Using Logging in a gRPC Application

Learn how to configure logging in gRPC applications.

Configuring gRPC logging on the client and server

When our application runs in production, it's absolutely essential that it logs its actions. Without logging, we won't be able to diagnose any problems that occur and find an appropriate solution to them.

In .NET, gRPC logging is integrated with the rest of the application logging. To enable it, we'll need to configure the logging provider and set the logging level. This is what we'll look at in this lesson. We'll start with the setup presented in the code widget below.

{
  "profiles": {
    "BasicGrpcService": {
      "commandName": "Project",
      "dotnetRunMessages": true,
      "launchBrowser": false,
      "applicationUrl": "http://127.0.0.1:5100;https://127.0.0.1:7100",
      "environmentVariables": {
        "ASPNETCORE_ENVIRONMENT": "Development"
      }
    }
  }
}
Codebase with the default logging configuration

Enabling logging in the ASP.NET Core application

By default, ASP.NET Core uses console logging as the logging provider. This means that it will log all its events into the console. This information can then be collected by any software that is capable of reading the console output.

However, it's ...