Пример #1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            var logger = new SerilogLogger(GetType().Assembly, Configuration);

            app.Run(async(context) =>
            {
                await context.Response.WriteAsync("Hello World!");
                await logger.WriteInfoAsync(nameof(TestClient), nameof(Startup), "Test logging 1111");
            });
        }