serilog-sinks-browserhttp icon indicating copy to clipboard operation
serilog-sinks-browserhttp copied to clipboard

Serilog sink for client-side Blazor, with matching ASP.NET Core server relay

Results 11 serilog-sinks-browserhttp issues
Sort by recently updated
recently updated
newest added

After upgrading Microsoft Asp.net Core Nuget packages from 8.0.1 to 8.0.3, E.g (Microsoft.AspNetCore.Components.WebAssembly.Server) the Asp.Net core project fails to start due to the below exception: **Exception:** Could not load type...

We're using these libraries to send log messages from a Blazor WebAssembly app up to an ASP.NET server in Azure, which in turn logs to ApplicationInsights. However, all exceptions coming...

Currently, the logs are batched and sent to the remote endpoint. It would be better if an option was provided to send the logs immediately. This will be really helpful...

I would like logs generated for an authenticated user to be sent to the server along with the user's token in the headers. If the user signs off, log entries...

Some Serilog sinks, such as `Console()`, show timestamps in whatever time zone they're specified in. This makes logs from the client look inconsistent with logs from the server, since _Serilog.Sinks.BrowserConsole_...

enhancement

I have created hosted blazorwasm project and trying to utilize serilog to view the log and events I am getting the following Error '2021-06-06T07:16:11.1970000Z Exception while emitting periodic batch from...

E.g. when calling `Log.CloseAndFlush()`: ``` at System.Threading.Tasks.Task.Wait() at Serilog.Sinks.PeriodicBatching.PeriodicBatchingSink.ResetSyncContextAndWait(Func`1 taskFactory) at Serilog.Sinks.PeriodicBatching.PeriodicBatchingSink.CloseAndFlush() at Serilog.Sinks.PeriodicBatching.PeriodicBatchingSink.Dispose(Boolean disposing) at Serilog.Sinks.BrowserHttp.BrowserHttpSink.Dispose(Boolean disposing) at Serilog.Sinks.PeriodicBatching.PeriodicBatchingSink.Dispose() ``` It's likely this will require specific support in `PeriodicBatchingSink`,...

bug
good first issue

We have a Blazor app which is designed to be used offline under certain circumstances. The BrowserHttpSink.EmitBatchAsync method is not exception safe, so when it is offline, the call to...

bug
up-for-grabs

The usage in a blazor RC1 project breaks the NavigationManager. How to reproduce: 1) Assume that you have a service locator that resolve backed services. In this case the ingest...