Soenneker.Serilog.Sinks.Browser.Blazor 3.0.98

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.98
                    
NuGet\Install-Package Soenneker.Serilog.Sinks.Browser.Blazor -Version 3.0.98
                    
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.98" />
                    
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.98" />
                    
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.98
                    
#r "nuget: Soenneker.Serilog.Sinks.Browser.Blazor, 3.0.98"
                    
#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.98
                    
#: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.98
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Serilog.Sinks.Browser.Blazor&version=3.0.98
                    
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: 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
3.0.194 2,256 9/21/2025
3.0.193 3,499 9/16/2025
3.0.192 1,958 9/10/2025
3.0.191 333 9/9/2025
3.0.190 387 9/9/2025
3.0.189 284 9/9/2025
3.0.188 1,165 9/3/2025
3.0.187 227 9/3/2025
3.0.186 359 9/3/2025
3.0.185 165 9/3/2025
3.0.184 148 9/3/2025
3.0.183 934 8/16/2025
3.0.182 753 8/11/2025
3.0.181 320 8/11/2025
3.0.180 143 8/11/2025
3.0.179 318 8/11/2025
3.0.178 481 8/11/2025
3.0.177 544 8/5/2025
3.0.176 198 8/5/2025
3.0.175 445 7/29/2025
3.0.174 851 7/8/2025
3.0.173 257 7/8/2025
3.0.172 661 7/3/2025
3.0.171 571 6/28/2025
3.0.170 179 6/27/2025
3.0.169 132 6/27/2025
3.0.168 93 6/27/2025
3.0.167 433 6/24/2025
3.0.166 557 6/11/2025
3.0.165 473 6/10/2025
3.0.164 419 6/10/2025
3.0.163 633 6/2/2025
3.0.162 200 6/2/2025
3.0.161 310 5/27/2025
3.0.160 227 5/27/2025
3.0.159 295 5/27/2025
3.0.158 143 5/27/2025
3.0.157 347 5/25/2025
3.0.156 388 5/23/2025
3.0.155 230 5/23/2025
3.0.154 195 5/22/2025
3.0.153 198 5/22/2025
3.0.152 423 5/18/2025
3.0.151 366 5/14/2025
3.0.150 354 5/13/2025
3.0.149 585 5/8/2025
3.0.148 228 5/8/2025
3.0.147 261 5/8/2025
3.0.146 197 5/8/2025
3.0.145 199 5/7/2025
3.0.144 608 5/5/2025
3.0.143 278 5/5/2025
3.0.142 284 5/5/2025
3.0.141 207 5/5/2025
3.0.140 232 5/5/2025
3.0.139 169 5/5/2025
3.0.138 260 5/5/2025
3.0.137 299 5/5/2025
3.0.136 572 4/27/2025
3.0.135 144 4/26/2025
3.0.134 502 4/9/2025
3.0.133 247 4/9/2025
3.0.132 309 4/8/2025
3.0.131 186 4/8/2025
3.0.130 206 4/8/2025
3.0.129 180 4/8/2025
3.0.128 385 4/8/2025
3.0.127 207 4/8/2025
3.0.126 202 4/8/2025
3.0.125 176 4/8/2025
3.0.124 227 4/8/2025
3.0.123 166 4/8/2025
3.0.122 205 4/8/2025
3.0.121 202 4/7/2025
3.0.120 200 4/7/2025
3.0.119 756 4/7/2025
3.0.118 250 4/7/2025
3.0.117 320 4/7/2025
3.0.116 241 4/7/2025
3.0.115 273 4/7/2025
3.0.114 266 4/7/2025
3.0.113 241 4/7/2025
3.0.112 268 4/6/2025
3.0.111 164 4/6/2025
3.0.110 203 4/6/2025
3.0.109 220 4/6/2025
3.0.108 160 4/6/2025
3.0.107 236 4/6/2025
3.0.106 153 4/6/2025
3.0.105 206 4/6/2025
3.0.104 152 4/6/2025
3.0.103 169 4/6/2025
3.0.102 125 4/6/2025
3.0.101 123 4/6/2025
3.0.100 111 4/6/2025
3.0.99 218 4/6/2025
3.0.98 126 4/6/2025
3.0.97 120 4/6/2025
3.0.96 202 4/5/2025
3.0.95 123 4/5/2025
3.0.94 158 4/5/2025
3.0.93 162 4/5/2025
3.0.92 130 4/5/2025
3.0.91 91 4/5/2025
3.0.90 476 4/4/2025
3.0.89 103 4/4/2025
3.0.88 144 4/4/2025
3.0.87 132 4/4/2025
3.0.86 713 4/3/2025
3.0.85 286 4/1/2025
3.0.84 266 4/1/2025
3.0.83 323 3/31/2025
3.0.82 232 3/31/2025
3.0.81 285 3/31/2025
3.0.80 242 3/29/2025
3.0.79 156 3/29/2025
3.0.78 615 3/25/2025
3.0.77 522 3/25/2025
3.0.76 534 3/25/2025
3.0.75 523 3/24/2025
3.0.74 189 3/21/2025
3.0.73 195 3/21/2025
3.0.72 275 3/18/2025
3.0.71 208 3/18/2025
3.0.70 170 3/15/2025
3.0.69 116 3/15/2025
3.0.68 251 3/12/2025
3.0.67 201 3/12/2025
3.0.66 214 3/12/2025
3.0.65 180 3/12/2025
3.0.64 203 3/12/2025
3.0.63 220 3/11/2025
3.0.62 171 3/11/2025
3.0.61 198 3/11/2025
3.0.60 192 3/11/2025
3.0.59 176 3/11/2025
3.0.58 218 3/11/2025
3.0.57 174 3/11/2025
3.0.56 222 3/11/2025
3.0.55 184 3/11/2025
3.0.54 235 3/11/2025
3.0.53 175 3/11/2025
3.0.52 344 3/7/2025
3.0.51 262 3/7/2025
3.0.50 252 3/2/2025
3.0.49 166 3/2/2025
3.0.48 132 3/2/2025
3.0.47 178 3/2/2025
3.0.46 158 3/1/2025
3.0.45 155 3/1/2025
3.0.44 131 3/1/2025
3.0.43 116 3/1/2025
3.0.42 170 3/1/2025
3.0.41 114 3/1/2025
3.0.40 148 3/1/2025
3.0.39 129 3/1/2025
3.0.38 164 3/1/2025
3.0.37 119 3/1/2025
3.0.36 116 3/1/2025
3.0.35 142 3/1/2025
3.0.34 112 3/1/2025
3.0.33 249 2/25/2025
3.0.32 153 2/25/2025
3.0.31 152 2/25/2025
3.0.30 186 2/25/2025
3.0.29 153 2/25/2025
3.0.28 186 2/24/2025
3.0.27 201 2/23/2025
3.0.26 151 2/23/2025
3.0.25 150 2/22/2025
3.0.24 221 2/22/2025
3.0.23 147 2/22/2025
3.0.22 129 2/22/2025
3.0.21 138 2/22/2025
3.0.20 120 2/22/2025
3.0.19 157 2/21/2025
3.0.18 214 2/21/2025
3.0.17 154 2/21/2025
3.0.16 239 2/19/2025
3.0.15 124 2/19/2025
3.0.14 129 2/19/2025
3.0.13 139 2/18/2025
3.0.12 384 2/18/2025
3.0.11 130 2/18/2025
3.0.10 167 2/18/2025
3.0.9 243 2/14/2025
3.0.8 228 2/13/2025
3.0.7 163 2/12/2025
3.0.6 112 2/12/2025
3.0.5 131 2/12/2025
3.0.4 123 2/12/2025
3.0.3 126 2/12/2025
3.0.2 124 2/12/2025
3.0.1 120 2/12/2025