Soenneker.Serilog.Sinks.Browser.Blazor 3.0.73

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.73
                    
NuGet\Install-Package Soenneker.Serilog.Sinks.Browser.Blazor -Version 3.0.73
                    
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.73" />
                    
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.73" />
                    
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.73
                    
#r "nuget: Soenneker.Serilog.Sinks.Browser.Blazor, 3.0.73"
                    
#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.73
                    
#: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.73
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Serilog.Sinks.Browser.Blazor&version=3.0.73
                    
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 Serilog.Extensions.Logging
    dotnet add package Soenneker.Serilog.Sinks.Browser.Blazor
    
  2. 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: true);
        });

        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
4.0.206 285 11/6/2025
4.0.205 100 11/6/2025
4.0.204 300 11/6/2025
4.0.203 701 11/4/2025
4.0.202 829 10/30/2025
4.0.201 235 10/30/2025
4.0.200 262 10/30/2025
4.0.199 173 10/30/2025
4.0.198 251 10/29/2025
4.0.197 165 10/29/2025
3.0.196 1,442 10/16/2025
3.0.195 566 10/14/2025
3.0.194 4,793 9/21/2025
3.0.193 3,519 9/16/2025
3.0.192 1,976 9/10/2025
3.0.191 362 9/9/2025
3.0.190 415 9/9/2025
3.0.189 316 9/9/2025
3.0.188 1,188 9/3/2025
3.0.187 253 9/3/2025
3.0.186 399 9/3/2025
3.0.185 191 9/3/2025
3.0.184 164 9/3/2025
3.0.183 952 8/16/2025
3.0.182 782 8/11/2025
3.0.181 334 8/11/2025
3.0.180 178 8/11/2025
3.0.179 343 8/11/2025
3.0.178 511 8/11/2025
3.0.177 582 8/5/2025
3.0.176 225 8/5/2025
3.0.175 471 7/29/2025
3.0.174 900 7/8/2025
3.0.173 271 7/8/2025
3.0.172 665 7/3/2025
3.0.171 588 6/28/2025
3.0.170 182 6/27/2025
3.0.169 147 6/27/2025
3.0.168 107 6/27/2025
3.0.167 455 6/24/2025
3.0.166 576 6/11/2025
3.0.165 486 6/10/2025
3.0.164 433 6/10/2025
3.0.163 649 6/2/2025
3.0.162 214 6/2/2025
3.0.161 323 5/27/2025
3.0.160 250 5/27/2025
3.0.159 309 5/27/2025
3.0.158 169 5/27/2025
3.0.157 373 5/25/2025
3.0.156 401 5/23/2025
3.0.155 245 5/23/2025
3.0.154 222 5/22/2025
3.0.153 222 5/22/2025
3.0.152 446 5/18/2025
3.0.151 382 5/14/2025
3.0.150 367 5/13/2025
3.0.149 600 5/8/2025
3.0.148 244 5/8/2025
3.0.147 277 5/8/2025
3.0.146 211 5/8/2025
3.0.145 215 5/7/2025
3.0.144 622 5/5/2025
3.0.143 302 5/5/2025
3.0.142 298 5/5/2025
3.0.141 232 5/5/2025
3.0.140 245 5/5/2025
3.0.139 173 5/5/2025
3.0.138 274 5/5/2025
3.0.137 312 5/5/2025
3.0.136 587 4/27/2025
3.0.135 158 4/26/2025
3.0.134 506 4/9/2025
3.0.133 260 4/9/2025
3.0.132 323 4/8/2025
3.0.131 199 4/8/2025
3.0.130 220 4/8/2025
3.0.129 193 4/8/2025
3.0.128 400 4/8/2025
3.0.127 220 4/8/2025
3.0.126 217 4/8/2025
3.0.125 188 4/8/2025
3.0.124 241 4/8/2025
3.0.123 190 4/8/2025
3.0.122 208 4/8/2025
3.0.121 209 4/7/2025
3.0.120 214 4/7/2025
3.0.119 761 4/7/2025
3.0.118 263 4/7/2025
3.0.117 335 4/7/2025
3.0.116 256 4/7/2025
3.0.115 286 4/7/2025
3.0.114 288 4/7/2025
3.0.113 257 4/7/2025
3.0.112 282 4/6/2025
3.0.111 170 4/6/2025
3.0.110 217 4/6/2025
3.0.109 235 4/6/2025
3.0.108 186 4/6/2025
3.0.107 269 4/6/2025
3.0.106 168 4/6/2025
3.0.105 220 4/6/2025
3.0.104 166 4/6/2025
3.0.103 182 4/6/2025
3.0.102 139 4/6/2025
3.0.101 138 4/6/2025
3.0.100 135 4/6/2025
3.0.99 233 4/6/2025
3.0.98 140 4/6/2025
3.0.97 134 4/6/2025
3.0.96 219 4/5/2025
3.0.95 146 4/5/2025
3.0.94 172 4/5/2025
3.0.93 177 4/5/2025
3.0.92 145 4/5/2025
3.0.91 117 4/5/2025
3.0.90 490 4/4/2025
3.0.89 118 4/4/2025
3.0.88 159 4/4/2025
3.0.87 145 4/4/2025
3.0.86 718 4/3/2025
3.0.85 302 4/1/2025
3.0.84 280 4/1/2025
3.0.83 338 3/31/2025
3.0.82 248 3/31/2025
3.0.81 300 3/31/2025
3.0.80 260 3/29/2025
3.0.79 173 3/29/2025
3.0.78 630 3/25/2025
3.0.77 547 3/25/2025
3.0.76 550 3/25/2025
3.0.75 539 3/24/2025
3.0.74 203 3/21/2025
3.0.73 213 3/21/2025
3.0.72 289 3/18/2025
3.0.71 224 3/18/2025
3.0.70 183 3/15/2025
3.0.69 132 3/15/2025
3.0.68 265 3/12/2025
3.0.67 215 3/12/2025
3.0.66 228 3/12/2025
3.0.65 194 3/12/2025
3.0.64 217 3/12/2025
3.0.63 236 3/11/2025
3.0.62 175 3/11/2025
3.0.61 213 3/11/2025
3.0.60 205 3/11/2025
3.0.59 192 3/11/2025
3.0.58 235 3/11/2025
3.0.57 188 3/11/2025
3.0.56 236 3/11/2025
3.0.55 198 3/11/2025
3.0.54 238 3/11/2025
3.0.53 191 3/11/2025
3.0.52 358 3/7/2025
3.0.51 280 3/7/2025
3.0.50 256 3/2/2025
3.0.49 188 3/2/2025
3.0.48 155 3/2/2025
3.0.47 195 3/2/2025
3.0.46 172 3/1/2025
3.0.45 168 3/1/2025
3.0.44 157 3/1/2025
3.0.43 130 3/1/2025
3.0.42 184 3/1/2025
3.0.41 127 3/1/2025
3.0.40 154 3/1/2025
3.0.39 143 3/1/2025
3.0.38 179 3/1/2025
3.0.37 123 3/1/2025
3.0.36 131 3/1/2025
3.0.35 155 3/1/2025
3.0.34 127 3/1/2025
3.0.33 263 2/25/2025
3.0.32 167 2/25/2025
3.0.31 172 2/25/2025
3.0.30 200 2/25/2025
3.0.29 172 2/25/2025
3.0.28 203 2/24/2025
3.0.27 216 2/23/2025
3.0.26 166 2/23/2025
3.0.25 163 2/22/2025
3.0.24 239 2/22/2025
3.0.23 160 2/22/2025
3.0.22 143 2/22/2025
3.0.21 154 2/22/2025
3.0.20 147 2/22/2025
3.0.19 170 2/21/2025
3.0.18 231 2/21/2025
3.0.17 179 2/21/2025
3.0.16 253 2/19/2025
3.0.15 138 2/19/2025
3.0.14 143 2/19/2025
3.0.13 157 2/18/2025
3.0.12 399 2/18/2025
3.0.11 146 2/18/2025
3.0.10 180 2/18/2025
3.0.9 255 2/14/2025
3.0.8 241 2/13/2025
3.0.7 186 2/12/2025
3.0.6 135 2/12/2025
3.0.5 134 2/12/2025
3.0.4 138 2/12/2025
3.0.3 141 2/12/2025
3.0.2 139 2/12/2025
3.0.1 138 2/12/2025