TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About logging
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sardar Mudassar Ali Khan (4)
Vinoth Xavier (3)
Satya Karki (3)
Vijai Anand Ramalingam (3)
Ashutosh Singh (3)
Jignesh Trivedi (3)
David Mccarter (3)
Vithal Wadje (3)
Abhimanyu K Vatsa (2)
Miguel Teheran (2)
Aman Gupta (2)
Shilpa Tanwar (2)
Chetan Sanghani (2)
Mohamed Azarudeen Z (2)
Lokendra Singh (2)
Jitendra Mesavaniya (2)
Abhishek Chadha (2)
Vivek Tripathi (2)
Jaydeep Patil (2)
Ajay Kumar (2)
Debasis Saha (1)
Rahul Sharma (1)
Oleg Litvinov (1)
Suthahar Jegatheesan (1)
Uday Dodiya (1)
Vijay Yadav (1)
Tahir Ansari (1)
Vaishali Vishwakarma (1)
Sreenath Kappoor (1)
Velladurai (1)
Sanjay Kumar (1)
Ayesha Saleem (1)
Anup Hosur (1)
Akhil Mittal (1)
Ayush Gupta (1)
Divya Sharma (1)
Thiago Vivas (1)
Anil Kumar (1)
Amit Choudhary (1)
Amit Patel (1)
Harshit Pandey (1)
Sumit Kharche (1)
Satheesh Elumalai (1)
Ziggy Rafiq (1)
Sarathlal Saseendran (1)
Akshay Patel (1)
Monica Rathbun (1)
Maniteja Vegi (1)
Praveen Sreeram (1)
Mark Pelf (1)
Manikanta Pattigulla (1)
Ravi Patel (1)
Nandan Hegde (1)
Alpesh Maniya (1)
Tuhin Paul (1)
Subarta Ray (1)
Afsar Uddin (1)
Wei Chen (1)
Rathrola Prem Kumar (1)
Amit Mohanty (1)
Sangeetha S (1)
Munesh Sharma (1)
Mahender Pal (1)
Vitalii Honcharuk (1)
Jeetendra Gund (1)
Jay Krishnareddy (1)
Amit Tyagi (1)
Ankit Prajapati (1)
Nimit Joshi (1)
Reeta Singh Lodhi (1)
Raj Kumar (1)
Related resources for logging
No resource found
Converting HTML to PDF or Image in C# Using wkhtmltopdf
11/13/2024 9:02:59 AM.
This guide explains generating PDFs and images from HTML using wkhtmltopdf in C#. With wkhtmltopdf's Webkit-based engine, convert HTML content, including complex CSS and JavaScript, into high-qual
Learn AngularJS From Beginning: Service - Part Three
10/21/2024 9:48:47 AM.
This article explores AngularJS services, emphasizing their role in organizing and sharing code through dependency injection. It covers creating custom services using the factory, service, and provide
Why In ASP.NET Core logging is often implemented as a singleton
10/20/2024 9:31:50 AM.
In ASP.NET Core, logging is often implemented as a singleton to ensure efficient resource usage, centralized management, and thread-safe logging across the application.
Learn NLog Advanced Usage
10/19/2024 3:10:53 PM.
This article explores implementing dynamic logging in multi-tenant applications using NLog. It discusses configuring NLog to enable debug logging on a per-request basis without modifying existing conf
Creating And Embedding A Bot Application In Your Blogger
10/16/2024 9:58:32 AM.
This step-by-step guide covers bot development, API integration, and embedding the chatbot directly into your blog, offering an interactive experience for your readers.
Logging Errors With Error Logging Modules And Handlers (ELMAH) in ASP.NET MVC 4
10/8/2024 8:33:16 AM.
Error Logging Modules and Handlers (ELMAH) is an alternative to Health Monitoring System (HMS) for logging errors and is free and available under an open-source license created and managed by Atif Azi
Using Log4net to Log Exceptions in ASP.NET
10/6/2024 2:59:46 PM.
In this guide, we explore how to effectively use Log4net for logging exceptions in ASP.NET applications. You'll learn how to configure Log4net, implement logging best practices, and capture detail
Factory Method Pattern: Simplifying Object Creation in C#
9/17/2024 4:01:43 AM.
The Factory Method Pattern is a creational design pattern that delegates object creation to subclasses, promoting flexibility and maintainability. It defines an interface for creating objects but lets
Advanced Logging Techniques in ASP.NET Core 8 with Serilog
9/3/2024 4:00:53 AM.
Serilog is a diagnostic logging library for .NET applications. It provides a simple, flexible and powerful way to log application events, errors and other information. This article describes how we ca
Simplifying ASP.NET Core 8 Logging with Serilog and AppInsight
9/2/2024 8:00:14 AM.
Serilog is a powerful .NET logging library that supports structured logging, enhancing application monitoring and debugging. To integrate Serilog with ASP.NET Core and Application Insights, install es
Store Java Errors in Database with Dynamic Error-Based Logging
8/23/2024 4:49:27 AM.
It covers setting up logging frameworks, capturing runtime errors, and ensuring data persistence for effective error management and tracking. Ideal for improving application reliability and diagnosti
Stream Conversations with Amazon Bedrock API in .NET Console App
8/12/2024 5:13:11 AM.
Learn how to create a .NET console application that streams conversations using the Amazon Bedrock Converse API with the Anthropic Claude 3 Sonnet model. This guide covers setting up your AWS environm
How to Create Custom Middleware in Next.js
8/5/2024 4:57:05 AM.
In Next.js, middleware allows you to run code before a request completes, useful for tasks like authentication, logging, and redirection. Introduced in version 12, it can be applied globally or to spe
How to Create a Custom 404 Page in Next.js
8/5/2024 4:30:51 AM.
In Next.js, customizing a 404 page improves user experience by guiding users who land on non-existent pages. Create a 404.js component in the pages directory, style it with 404.module.css, and add nav
Spring Boot Logging for Production and Development Servers
7/30/2024 5:45:00 AM.
This guide covers configuring logging settings, integrating log management tools, and best practices for monitoring and analyzing logs to ensure smooth application performance and debugging.
Understanding Middleware in ASP.NET Core
7/24/2024 6:35:10 AM.
Middleware in ASP.NET Core is a sequence of code components that handle HTTP requests and responses. It enables custom processing, such as authentication, logging, and error handling.
Handling Exceptions in ADO.NET Best Practices for Error Handling
7/24/2024 4:39:42 AM.
When working with ADO.NET for data access in .NET applications, effective exception handling is crucial to ensure the stability and reliability of your applications. This article will explore common e
Performance Optimization in ADO.NET: Tips and Techniques
7/23/2024 9:19:54 AM.
Optimize ADO.NET performance by leveraging connection pooling to reduce overhead, using efficient command execution strategies such as stored procedures and batch processing, and retrieving data effec
Logging Patterns in ASP.NET Core 8
7/22/2024 4:56:21 AM.
In this article, we will explore the essential logging patterns in ASP.NET Core 8 to enhance your application's observability. Learn about basic, structured, and exception logging, along with best
After Business Rules in ServiceNow: Scenarios and Best Practices
7/22/2024 3:49:40 AM.
After Business Rules in ServiceNow execute after a database operation, enabling actions that depend on the successful completion of the initial operation. Common scenarios include audit logging, trigg
How to Start a Project in C#?
7/18/2024 10:28:53 AM.
This article guides you through starting a C# project, including setting up Visual Studio or Visual Studio Code, creating a new project, and configuring essential features like dependency injection, c
Implementing a Audit Trail in ASP.NET Core Web API
7/17/2024 12:18:56 PM.
Learn how to implement a robust audit trail in an ASP.NET Core Web API using Entity Framework Core and SQL Server. This comprehensive guide covers setting up the project, defining data models like Pro
Logging in Python
7/17/2024 5:51:53 AM.
Logging in Python" explores the powerful logging module, providing essential tools for effective log management. Learn to track errors, debug code, and monitor applications with various log level
Error handling in Transact-SQL (T-SQL)
7/13/2024 10:59:58 AM.
Effective error handling in T-SQL (Transact-SQL) is vital for managing unexpected issues in database operations. Using TRY-CATCH blocks, RAISEERROR, and error functions like ERROR_MESSAGE and ERROR_NU
C# Method Designed to Make a POST Request to a Web API Endpoint
7/4/2024 5:31:08 AM.
This guide covers API integration in C#, detailing serialization, encryption, HTTP requests, and error handling. Learn how to set up an API integration method, handle responses, and follow best practi
Benefits of Locking and Unlocking Objects in C#
7/3/2024 11:06:28 AM.
Object locking in C# ensures controlled access to shared resources in multithreaded environments, preventing race conditions and maintaining data integrity. By using the lock statement, you can synchr
Enhancing Security with a Client IP Safelist in .NET
6/27/2024 9:43:12 AM.
Enhance your web application's security by implementing an IP safelist in ASP.NET Core. This technique restricts access to trusted IP addresses only, preventing unauthorized access. Our guide cove
Understanding SQL Triggers: Types, Uses, and Examples
6/17/2024 4:52:25 AM.
SQL triggers are powerful database objects that automatically execute in response to specific events occurring within a database. They enable developers to automate tasks, enforce data integrity, and
Enhancing Error Logging with SeriLog .NET
6/6/2024 7:47:51 AM.
In this article, we'll explore how to enhance error logging using MySeriLogProject, a logging library designed to handle exceptions gracefully and improve the robustness of your applications. We&#
Configuring Log4Net With Database - A Tutorial For Beginners
6/5/2024 5:35:32 AM.
Log4Net is a framework for logging .NET applications. It is an open source library that can be used to log output for different targets like logging output in Text files, Database, Console, Mail (SMTP
Logging With ElasticSearch, Kibana, Serilog Using ASP.NET Core Docker
6/5/2024 5:25:55 AM.
Logging with ElasticSearch, Kibana, and Serilog in ASP.NET Core using Docker enables centralized log management, real-time analysis, and visualization. Serilog captures structured logs, ElasticSearch
Understanding Decorators in Python
6/4/2024 5:51:05 AM.
In this article, we explore Python decorators, which allow you to modify the behavior of functions without altering their source code. By using decorators, you can add functionality, log information,
6 One Liners Hacks in Javascript Part-2
5/30/2024 7:19:44 AM.
In this article, we will Discover time-saving one-liner JavaScript hacks for console logging, palindrome checks, sorting, generating colors, unique elements, and variables swapping.
RESTful Day #6: Request Logging And Exception Handing/Logging In Web APIs Using Action Filters, Exception Filters and NLog
5/24/2024 9:14:17 AM.
Day 6 of the RESTful journey focuses on robust request logging and exception handling in Web APIs. Employ Action Filters, Exception Filters, and NLog for comprehensive logging and error management, en
Understanding and Implementing Application Logging
5/20/2024 6:51:00 AM.
Logging is pivotal in app development, aiding in error detection and performance monitoring. Evolving from basic methods to sophisticated tools like SeriLog, it ensures app stability and reliability.
Introduction to Tracing in .Net
5/14/2024 11:01:17 AM.
Tracing in .NET offers insights into application behavior, aiding debugging and performance monitoring. Utilize TraceListeners and TraceSources to capture and analyze trace information effectively for
Road To AZ-204 - Instrument Solutions To Support Monitoring And Logging
5/13/2024 4:44:23 AM.
This article's intention is to explain the main skills measured in this sub-topic of the AZ-204 Certification. Application Insights, Azure Monitor and Transient Faults are the main components that
Structured Logging With Serilog and Seq: Part 1
5/3/2024 11:43:44 AM.
Learn structured logging using Serilog and Seq in this comprehensive guide. Explore how to set up Serilog for .NET applications and integrate with Seq for centralized log management.
Understanding Log Service In AngularJS
5/3/2024 8:58:02 AM.
The Log Service in AngularJS, accessed through $log, facilitates efficient debugging by offering logging functionalities with various levels like debug, info, warn, and error. It aids in diagnosing is
Enterprise Library New Version 6
4/29/2024 10:15:21 AM.
Enterprise Library Version 6 is a Microsoft .NET Framework library offering application blocks for logging, caching, data access, security, and more. It provides configurable components for common ent
Structured Logging With Serilog and Seq: Part 2
4/25/2024 8:31:14 AM.
Learn structured logging with Serilog using Seq as a logging sink. Utilize HTTP calls to write logs, enrich log messages with additional properties, and query logs easily. Seq provides features like
NLOG New Utility For Smart Logging
4/25/2024 8:10:00 AM.
NLOG introduces a groundbreaking utility for smart logging, revolutionizing how you manage and enhance your logs. This cutting-edge tool offers efficient automation, empowering you with advanced capab
Accessing Google Blogger API From .NET
4/24/2024 2:06:41 PM.
Integrate Google Blogger API seamlessly with .NET for streamlined blogging functionalities, enabling access and interaction with Blogger services directly from your .NET applications.
How to Create a Node.js Logging System with Express
4/23/2024 4:37:28 AM.
In this article, we learn how to use a logging system by using node js. This article explores Node.js logging with Winston and Express, emphasizing logging's significance in monitoring, troublesho
Logging Database Operations in Entity Framework
4/22/2024 8:53:24 AM.
Discover Entity Framework 6's new feature: logging database operations. Easily debug and troubleshoot performance issues by logging SQL commands, parameters, timestamps, and more. Customize loggin
Keeping Your .NET Core API Safe and Sound
4/19/2024 4:57:22 AM.
In today's digital landscape, where data is king and APIs (Application Programming Interfaces) reign supreme, ensuring the security of your API in .NET Core is paramount. In this article, we delve
How To Integrate Application Insights Into Azure Functions
4/17/2024 8:06:12 AM.
Learn the seamless integration process of Application Insights into Azure Functions. Enhance monitoring, logging, and performance tracking capabilities effortlessly. Harness the power of Azure service
How To Integrate Azure Application Insights Service To An Angular
4/17/2024 8:00:08 AM.
Elevate your Angular app's performance and monitoring capabilities by seamlessly integrating Azure Application Insights service. Track and optimize user experiences with advanced logging and monit
Best Practices for Handling Exceptions in C#
4/16/2024 10:49:46 AM.
Learn effective exception handling techniques in C# with Ziggy Rafiq's comprehensive guide. Discover best practices for managing exceptions, including specifying exception types, logging errors, a
Global Error Handling In ASP.NET Core App Using NLog
4/8/2024 8:44:06 AM.
In this post, we will see how to create an error handling middleware in ASP.NET Core application and handle all the exceptions in the app globally. We will write the error log details into a text file
.NET Core Web API Logging Using NLog In RabbitMQ
4/4/2024 10:27:32 AM.
This comprehensive guide explores setting up NLog for efficient logging, configuring RabbitMQ for asynchronous message handling, and integrating both into your Web API for centralized logging.
Overview Of Cycle Error Logs
3/28/2024 6:34:11 AM.
I saw this again recently and see it too often in environments so wanted to take a second to remind everyone to cycle their error logs on a regular basis. SQL Server keeps error logs and when you rebo
Application Insights In MVC Core, Web API Core And Entity Framework Core
3/27/2024 9:34:04 AM.
Explore comprehensive monitoring and performance tracking with Application Insights in MVC Core, Web API Core, and Entity Framework Core. Gain insights into application behavior, error logging, and da
Passing Values Between Tasks in Azure DevOps Pipeline
3/26/2024 10:39:12 AM.
In this article, we will learn efficient inter-task communication in Azure DevOps pipelines. Discover how to pass values between tasks using the task.setvariable logging command, streamlining your pip
Building a Logging Proxy in C#
3/26/2024 8:09:28 AM.
In this article, we build a practical reusable Logging Proxy in C#. This article elucidates the creation of a Logging-Proxy, vital for logging calls and data transfers over specified interfaces, aidin
Logging And Tracing With Post Sharp
3/19/2024 11:58:46 AM.
Learn how to implement logging and tracing in .NET applications using PostSharp. Utilize aspect-oriented programming to inject logging behavior into methods, simplifying code maintenance and enhancing
Shadow Properties In Entity Framework Core
3/7/2024 11:32:17 AM.
Entity framework core added many new features that are already present in older entity framework versions. One of the features of the Entity framework core is "Shadow Properties". The featur
SQL Server Error Logging From A Stored Procedure
3/5/2024 10:28:44 AM.
In this article, we will learn effective error handling in SQL Server stored procedures. Utilize RAISERROR to log errors, manage exceptions, and maintain robust error reporting mechanisms for enhanced
Error Logging and the Art of Avoiding Redundant Activities in MSFT Fabric Data Pipelines
2/18/2024 5:06:13 AM.
Error Logging and the Art of Avoiding Redundant Activities in MSFT Fabric Data Pipelines
IExceptionHandler in ASP.NET Core 8
2/7/2024 6:17:06 AM.
ASP.NET Core 8 introduces a new feature called IException Handler, providing a centralized way to handle exceptions in applications. This article explores what IExceptionHandler is and how to use it e
Logging in .NET Core with NLog
2/1/2024 9:46:44 AM.
Explore the fundamentals of logging and its benefits in software development using NLog in .NET Core 6. Follow a step-by-step implementation with prerequisites, NLog configuration, and a demo Weather
Securing Your .NET Applications With Examples
1/20/2024 11:16:24 AM.
In the realm of software development, security remains a paramount concern. This is especially true for .NET applications, which often handle sensitive data and interact with critical systems. By adhe
External Logging for APIs with Serilog
1/9/2024 7:34:44 AM.
With Serilog, logging for APIs and Windows Services becomes an effortless endeavor. By configuring Serilog to use external logging sources, you ensure that your application's behavior is well-docu
Logging Brilliance in .NET Core Part 2 : Using of Serilog in Windows Service
12/26/2023 10:58:54 AM.
Learn to implement external logging in API and Windows Service using Serilog. This guide covers Serilog configuration, worker class setup, and package references, ensuring efficient information tracki
Logging in .NET Core with Serilog
12/24/2023 9:46:36 AM.
Dive into the fundamentals of logging and follow a detailed guide on implementing Serilog in .NET Core 6 Web API. Learn the benefits and step-by-step configuration for efficient log management.
Error Handling in Angular
12/7/2023 5:31:02 AM.
In the dynamic realm of web development, errors are inevitable. As applications grow in complexity, the significance of robust error logging in Angular becomes paramount. This comprehensive guide navi
Logging Brilliance in .NET Core: Using of Serilog
12/5/2023 9:09:38 AM.
This article will provide more details about .Net Core Middleware details, What? When? Where?. Middleware, integral in the ASP.NET Core request pipeline, manages requests and responses. Learn how midd
.NET Core Middleware for Logging using Serilog
11/1/2023 12:12:20 PM.
This article provides a comprehensive guide to setting up .NET Core middleware for logging using Serilog. It covers key steps from project setup to middleware configuration, highlighting the flexibili
Extending Logging Functionality From Enterprise Library
10/30/2023 8:21:44 AM.
The Microsfot Enterprise Library provide us a collection of reusable software components, so software developers can take advantage of them to put them into enterprise use. Now I will share my persona
Boosting Code Quality with Effective Logging in C#
10/16/2023 6:31:56 AM.
Logging, an essential component in software development, aids in issue identification, resolution, and application monitoring. This article explores C# logging methodologies, including Microsoft.Exten
Elevate Your .NET 7 API: Exception Handling and Logging Mastery
10/5/2023 5:01:27 AM.
This article explores the best practices for exception handling and logging in .NET 7 APIs, enabling developers to create resilient applications that gracefully handle errors and provide valuable insi
Building a Microservices API Gateway with YARP in ASP.NET Core Web API
10/3/2023 6:29:13 AM.
Building a microservices API Gateway with YARP in ASP.NET Core Web API provides a flexible and scalable solution for managing and routing traffic in a microservices architecture. By incorporating feat
A Deep Dive into .NET Logging: Serilog, log4net, and NLog
9/23/2023 1:34:57 PM.
In the .NET ecosystem, three prominent logging frameworks stand out: Serilog, log4net, and NLog. In this article, we'll delve into each of these frameworks, discussing their features and capabilit
Building Custom Middleware Components for Logging, Error Handling, and Request/Response Modification
8/9/2023 5:05:33 AM.
ASP.NET Core to handle cross-cutting concerns like logging, error handling, and request/response modification:
Global Exception Handling In Asp.net Core Web API
8/4/2023 6:27:15 AM.
In the context of ASP.NET Core Web API (or any web application framework), global exception handling involves catching exceptions that occur during the processing of requests and returning appropriate
Real World Coding Issues: Part I
6/29/2023 9:08:43 AM.
I hope you read all the articles in this series so you too can improve the performance and memory issues along with the common code issues that I see in the projects where I work. Most of the code sam
Logging in ASP.NET Core WebAPI using NLog
6/1/2023 9:06:11 AM.
Logging in ASP.NET Core WebAPI using NLog
Mastering Bot Integration in Azure: Unleashing the Power of Clean Code
5/22/2023 12:26:26 PM.
his article dives deep into the world of bot integration in Azure, providing you with invaluable insights into the art of clean coding. Discover how to architect modular and structured code, implement
Daily log using log4net in worker service
4/14/2023 8:41:26 AM.
Log4Net logging daily log creation
Advanced Console Logging Methods In JavaScript
3/28/2023 8:30:20 AM.
This article describes the advanced logging console methods in javascript for debugging.
Structured Logging Using Serilog In ASP.NET Core 7.0
3/6/2023 10:52:19 AM.
In this article, we will see the structured Logging using Serilog in ASP.NET Core 7.0.
Getting Started With OpenTelemetry in .NET
11/2/2022 4:13:15 AM.
In this article, you will learn about OpenTelemetry and how to use it in .NET
Speeding Up Logging In .NET 6
6/9/2022 10:15:26 AM.
In this article, you will learn how to speed up Logging in .NET 6.
Speed Up Logging In .NET
3/24/2022 3:32:50 PM.
In this article, you will learn about speed up logging in .NET.
Error Logging Using D365 CE Plugin
1/31/2022 6:06:05 PM.
This article is about error logging using D365 CE plugins
How To Write Logs To Amazon CloudWatch Using NLog In .NET 6 Web API
1/11/2022 4:24:54 PM.
In this article, you will learn how to write logs to Amazon CloudWatch using NLog in .NET 6 Web API.
Advanced Entity Framework Core - Output EF SQL Queries To The Console And Tips To Setup Dbcontext With The Development In Mind
1/11/2022 3:12:51 AM.
When you work with abstractions over SQL Database you may be wondering what does Entity Framework constructs from your Linq queries. To get a clue on it here are 3 options. Tips to setup DbContext wit
How To Write Logs To Amazon CloudWatch Using Serilog In .NET 6 Web API
1/8/2022 10:35:51 AM.
How to write logs to Amazon CloudWatch using Serilog in .NET 6 Web API
How To Use Logging Module In Python
9/6/2021 4:48:55 AM.
In this article, you will learn how to use logging module in python.
Using Azure Application Insights For Exception Logging In C#
5/27/2021 12:18:24 PM.
In this article, you will learn how to use Azure Application Insights for Exception Logging in C#.
Kafka Features And Use Cases
4/4/2021 10:56:10 AM.
In this article we will be discussing some of its features and different uses cases.
Create Blogging Site With Angular And Scully
4/3/2021 2:58:32 PM.
In this article, We will see how to create a blogging site with angular and Scully
Getting Started Logging In Your Application With Facebook and Google in MVC 5
3/26/2021 9:01:48 AM.
In this article, you will learn to login your MVC 5 application with Facebook and Google with Visual Studio 2013 Preview.
How To Implement Logging Using Serilog In ASP.NET Core 5.0 Application With Database
2/23/2021 3:19:10 PM.
This article describes how to implement Serilog in ASP.NET Core Application with database
Logging Application Block
2/17/2021 7:04:07 AM.
In this article we will see how to configure logging.
Enterprise Library: Logging Application Block 5.0 in ASP.NET
2/11/2021 11:05:10 AM.
In this article you will learn how to use Logging Application Block with a real-world example in ASP.NET.
Logging Exception to Email
2/2/2021 7:09:13 AM.
In this article we will learn about exception Logging Exception to Email using ASP.NET
Logging Exception to Database
1/29/2021 9:37:20 AM.
In this article we will learn about exception logging to the database using ASP.NET.
Exception Logging to Text file
1/8/2021 7:40:35 AM.
In this article we will learn about the Exception Logging to Text file using asp.net C#
Entity Framework 6.0 SQL Logging: Changing the Content and Formatting
1/3/2021 5:09:03 AM.
This article explains how to change the formatting of the output in Entity Framework 6.0.