From 429f7502caaea5cd0e719b4fc51c17170b7d5d77 Mon Sep 17 00:00:00 2001 From: Rob Hague Date: Wed, 19 Feb 2025 12:07:44 +0000 Subject: [PATCH] Tweak logging.md (#1601) --- docfx/logging.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docfx/logging.md b/docfx/logging.md index 9c069341..e4e6af0a 100644 --- a/docfx/logging.md +++ b/docfx/logging.md @@ -4,6 +4,8 @@ Logging SSH.NET uses the [Microsoft.Extensions.Logging](https://learn.microsoft.com/dotnet/core/extensions/logging) API to log diagnostic messages. In order to access the log messages of SSH.NET in your own application for diagnosis, register your own `ILoggerFactory` before using the SSH.NET APIs, for example: ```cs +using Microsoft.Extensions.Logging; + ILoggerFactory loggerFactory = LoggerFactory.Create(builder => { builder.SetMinimumLevel(LogLevel.Debug); @@ -11,5 +13,6 @@ ILoggerFactory loggerFactory = LoggerFactory.Create(builder => }); Renci.SshNet.SshNetLoggingConfiguration.InitializeLogging(loggerFactory); +``` All messages by SSH.NET are logged under the `Renci.SshNet` category.