913 B
913 B
Loggers
Remote log writers for sending log items over HTTP, SignalR, or to the browser console.
Key Files
AcHttpClientLogItemWriter.cs— Abstract generic writer extendingAcLogItemWriterBase<TLogItem>. Sends log items via HTTP POST as JSON. Manages its ownHttpClientlifecycle.AcBrowserConsoleLogWriter.cs— Browser console writer via JS interop (IJSRuntime). MapsLogLevelto console methods (log, warn, error). Used in Blazor apps.AcSignaRClientLogItemWriter.cs— SendsAcLogItemClientitems to a SignalR hub. ManagesHubConnectionlifecycle withStartConnection()/StopConnection().
All three implement IAcLogWriterClientBase.
LLM Maintenance: If you modify code in this folder, update this README to reflect the changes. If you notice the README content does not match the current code, automatically update the README to match the code.