Lavspent.BrowserLogger
1.0.0
ASP.NET Core 응용 프로그램에서 브라우저를 로그 대상으로 사용하겠습니다.
install-package Lavspent.BrowserLogger
public void ConfigureServices ( IServiceCollection services )
{
// ...
services . AddBrowserLogger ( ) ;
services . Configure < BrowserLoggerOptions > ( Configuration . GetSection ( "Logging" ) ) ;
} public void Configure ( IApplicationBuilder app , IHostingEnvironment env )
{
// ...
app . UseWebSockets ( ) ;
app . UseBrowserLogger ( ) ;
} http://localhost:5000/console