Soenneker.Serilog.Sinks.Browser.Blazor 3.0.193

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Serilog.Sinks.Browser.Blazor --version 3.0.193
                    
NuGet\Install-Package Soenneker.Serilog.Sinks.Browser.Blazor -Version 3.0.193
                    
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="Soenneker.Serilog.Sinks.Browser.Blazor" Version="3.0.193" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Serilog.Sinks.Browser.Blazor" Version="3.0.193" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Serilog.Sinks.Browser.Blazor" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Serilog.Sinks.Browser.Blazor --version 3.0.193
                    
#r "nuget: Soenneker.Serilog.Sinks.Browser.Blazor, 3.0.193"
                    
#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.
#:package Soenneker.Serilog.Sinks.Browser.Blazor@3.0.193
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Serilog.Sinks.Browser.Blazor&version=3.0.193
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Serilog.Sinks.Browser.Blazor&version=3.0.193
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Serilog.Sinks.Browser.Blazor

A Serilog sink for logging within the Blazor client-side environment

image

An example demo app has been added to the solution.

🛠 Installation

  1. Install Required NuGet Packages
dotnet add package Soenneker.Serilog.Sinks.Browser.Blazor
  1. Configure Logging in Program.cs

An example:

using System;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.JSInterop;
using Serilog;
using Serilog.Debugging;
using Serilog.Events;
using Soenneker.Serilog.Sinks.Browser.Blazor.Registrars;

public class Program
{
    public static async Task Main(string[] args)
    {
        try
        {
            var builder = WebAssemblyHostBuilder.CreateDefault(args);

            ConfigureLogging(builder.Services);

            builder.RootComponents.Add<App>("#app");
            builder.RootComponents.Add<HeadOutlet>("head::after");

            WebAssemblyHost host = builder.Build();

            AddBlazorConsoleLogger(host);

            await host.RunAsync();
        }
        catch (Exception e)
        {
            Log.Error(e, "Stopped program because of exception");
            throw;
        }
        finally
        {
            await Log.CloseAndFlushAsync();
        }
    }

    private static IServiceCollection ConfigureLogging(IServiceCollection services)
    {
        SelfLog.Enable(m => Console.Error.WriteLine(m));

        services.AddLogging(builder =>
        {
            builder.ClearProviders();
            builder.AddSerilog(dispose: false);
        });

        return services;
    }

    private static WebAssemblyHost AddBlazorConsoleLogger(WebAssemblyHost host)
    {
        var jsRuntime = host.Services.GetRequiredService<IJSRuntime>();

        var loggerConfig = new LoggerConfiguration();

        loggerConfig.WriteTo.BlazorConsole(jsRuntime: jsRuntime);

        Log.Logger = loggerConfig.CreateLogger();

        return host;
    }
}

How It Works

  • ConfigureLogging(IServiceCollection services)
    • Enables Serilog's self-logging to capture any internal errors.
    • Registers Serilog as the primary logging provider.
  • SetGlobalLogger(WebAssemblyHost host)
    • Initializes the BlazorConsole sink to log messages directly in the browser's developer console.

🛠 Usage

Once you have installed and configured Serilog with the BlazorConsole sink, you can start logging messages in your Blazor components.

Injecting the Logger

In your Blazor component (.razor file), inject the ILogger<T> service:

@page "/"
@using Microsoft.Extensions.Logging

@inject ILogger<Index> Logger

<button @onclick="Click">Click</button>

@code {
    public void Click()
    {
        Logger.LogInformation("Testing information log");
    }
}
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.194 336 9/21/2025
3.0.193 3,361 9/16/2025
3.0.192 1,955 9/10/2025
3.0.191 331 9/9/2025
3.0.190 375 9/9/2025
3.0.189 282 9/9/2025
3.0.188 1,157 9/3/2025
3.0.187 226 9/3/2025
3.0.186 358 9/3/2025
3.0.185 164 9/3/2025
3.0.184 147 9/3/2025
3.0.183 934 8/16/2025
3.0.182 752 8/11/2025
3.0.181 319 8/11/2025
3.0.180 142 8/11/2025
3.0.179 317 8/11/2025
3.0.178 480 8/11/2025
3.0.177 544 8/5/2025
3.0.176 197 8/5/2025
3.0.175 444 7/29/2025
3.0.174 846 7/8/2025
3.0.173 256 7/8/2025
3.0.172 660 7/3/2025
3.0.171 570 6/28/2025
3.0.170 178 6/27/2025
3.0.169 131 6/27/2025
3.0.168 91 6/27/2025
3.0.167 430 6/24/2025
3.0.166 552 6/11/2025
3.0.165 472 6/10/2025
3.0.164 418 6/10/2025
3.0.163 632 6/2/2025
3.0.162 199 6/2/2025
3.0.161 309 5/27/2025
3.0.160 225 5/27/2025
3.0.159 294 5/27/2025
3.0.158 142 5/27/2025
3.0.157 346 5/25/2025
3.0.156 387 5/23/2025
3.0.155 229 5/23/2025
3.0.154 194 5/22/2025
3.0.153 197 5/22/2025
3.0.152 422 5/18/2025
3.0.151 365 5/14/2025
3.0.150 353 5/13/2025
3.0.149 584 5/8/2025
3.0.148 228 5/8/2025
3.0.147 260 5/8/2025
3.0.146 196 5/8/2025
3.0.145 198 5/7/2025
3.0.144 597 5/5/2025
3.0.143 278 5/5/2025
3.0.142 283 5/5/2025
3.0.141 206 5/5/2025
3.0.140 231 5/5/2025
3.0.139 168 5/5/2025
3.0.138 260 5/5/2025
3.0.137 298 5/5/2025
3.0.136 571 4/27/2025
3.0.135 143 4/26/2025
3.0.134 501 4/9/2025
3.0.133 246 4/9/2025
3.0.132 308 4/8/2025
3.0.131 185 4/8/2025
3.0.130 205 4/8/2025
3.0.129 179 4/8/2025
3.0.128 384 4/8/2025
3.0.127 206 4/8/2025
3.0.126 201 4/8/2025
3.0.125 175 4/8/2025
3.0.124 226 4/8/2025
3.0.123 165 4/8/2025
3.0.122 204 4/8/2025
3.0.121 201 4/7/2025
3.0.120 199 4/7/2025
3.0.119 756 4/7/2025
3.0.118 249 4/7/2025
3.0.117 319 4/7/2025
3.0.116 240 4/7/2025
3.0.115 272 4/7/2025
3.0.114 265 4/7/2025
3.0.113 240 4/7/2025
3.0.112 267 4/6/2025
3.0.111 163 4/6/2025
3.0.110 202 4/6/2025
3.0.109 219 4/6/2025
3.0.108 160 4/6/2025
3.0.107 235 4/6/2025
3.0.106 152 4/6/2025
3.0.105 204 4/6/2025
3.0.104 151 4/6/2025
3.0.103 168 4/6/2025
3.0.102 124 4/6/2025
3.0.101 122 4/6/2025
3.0.100 110 4/6/2025
3.0.99 217 4/6/2025
3.0.98 125 4/6/2025
3.0.97 120 4/6/2025
3.0.96 201 4/5/2025
3.0.95 122 4/5/2025
3.0.94 157 4/5/2025
3.0.93 161 4/5/2025
3.0.92 129 4/5/2025
3.0.91 90 4/5/2025
3.0.90 475 4/4/2025
3.0.89 102 4/4/2025
3.0.88 143 4/4/2025
3.0.87 131 4/4/2025
3.0.86 712 4/3/2025
3.0.85 285 4/1/2025
3.0.84 265 4/1/2025
3.0.83 322 3/31/2025
3.0.82 231 3/31/2025
3.0.81 284 3/31/2025
3.0.80 242 3/29/2025
3.0.79 155 3/29/2025
3.0.78 614 3/25/2025
3.0.77 521 3/25/2025
3.0.76 533 3/25/2025
3.0.75 522 3/24/2025
3.0.74 188 3/21/2025
3.0.73 194 3/21/2025
3.0.72 274 3/18/2025
3.0.71 207 3/18/2025
3.0.70 169 3/15/2025
3.0.69 115 3/15/2025
3.0.68 250 3/12/2025
3.0.67 199 3/12/2025
3.0.66 213 3/12/2025
3.0.65 179 3/12/2025
3.0.64 202 3/12/2025
3.0.63 219 3/11/2025
3.0.62 170 3/11/2025
3.0.61 197 3/11/2025
3.0.60 191 3/11/2025
3.0.59 175 3/11/2025
3.0.58 217 3/11/2025
3.0.57 173 3/11/2025
3.0.56 222 3/11/2025
3.0.55 183 3/11/2025
3.0.54 234 3/11/2025
3.0.53 174 3/11/2025
3.0.52 343 3/7/2025
3.0.51 261 3/7/2025
3.0.50 250 3/2/2025
3.0.49 165 3/2/2025
3.0.48 131 3/2/2025
3.0.47 177 3/2/2025
3.0.46 157 3/1/2025
3.0.45 153 3/1/2025
3.0.44 130 3/1/2025
3.0.43 115 3/1/2025
3.0.42 169 3/1/2025
3.0.41 113 3/1/2025
3.0.40 147 3/1/2025
3.0.39 128 3/1/2025
3.0.38 163 3/1/2025
3.0.37 118 3/1/2025
3.0.36 115 3/1/2025
3.0.35 141 3/1/2025
3.0.34 112 3/1/2025
3.0.33 248 2/25/2025
3.0.32 153 2/25/2025
3.0.31 152 2/25/2025
3.0.30 185 2/25/2025
3.0.29 152 2/25/2025
3.0.28 185 2/24/2025
3.0.27 200 2/23/2025
3.0.26 150 2/23/2025
3.0.25 149 2/22/2025
3.0.24 220 2/22/2025
3.0.23 146 2/22/2025
3.0.22 128 2/22/2025
3.0.21 137 2/22/2025
3.0.20 119 2/22/2025
3.0.19 156 2/21/2025
3.0.18 213 2/21/2025
3.0.17 153 2/21/2025
3.0.16 238 2/19/2025
3.0.15 123 2/19/2025
3.0.14 128 2/19/2025
3.0.13 139 2/18/2025
3.0.12 383 2/18/2025
3.0.11 129 2/18/2025
3.0.10 166 2/18/2025
3.0.9 242 2/14/2025
3.0.8 227 2/13/2025
3.0.7 162 2/12/2025
3.0.6 111 2/12/2025
3.0.5 130 2/12/2025
3.0.4 122 2/12/2025
3.0.3 125 2/12/2025
3.0.2 124 2/12/2025
3.0.1 119 2/12/2025