Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@halter73
Created December 8, 2016 23:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save halter73/1442401de3d9b2c8330ba0083f07cfc9 to your computer and use it in GitHub Desktop.
Save halter73/1442401de3d9b2c8330ba0083f07cfc9 to your computer and use it in GitHub Desktop.
// ...
using Microsoft.Extensions.Logging;
namespace WebApplication1
{
public class Startup
{
// ...
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
loggerFactory.AddConsole(LogLevel.Trace);
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment