Training
Module
Capture Web Application Logs with App Service Diagnostics Logging - Training
Learn about how to capture trace output from your Azure web apps. View a live log stream and download logs files for offline analysis.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
This article doesn't apply to hosted services in .NET. For the latest content on Windows services using Microsoft.Extensions.Hosting.BackgroundService and the Worker Service template, see:
By default, all Windows Service projects have the ability to interact with the Application event log and write information and exceptions to it. You use the AutoLog property to indicate whether you want this functionality in your application. By default, logging is turned on for any service you create with the Windows Service project template. You can use a static form of the EventLog class to write service information to a log without having to create an instance of an EventLog component or manually register a source.
The installer for your service automatically registers each service in your project as a valid source of events with the Application log on the computer where the service is installed, when logging is turned on. The service logs information each time the service is started, stopped, paused, resumed, installed, or uninstalled. It also logs any failures that occur. You do not need to write any code to write entries to the log when using the default behavior; the service handles this for you automatically.
If you want to write to an event log other than the Application log, you must set the AutoLog property to false
, create your own custom event log within your services code, and register your service as a valid source of entries for that log. You must then write code to record entries to the log whenever an action you're interested in occurs.
Note
If you use a custom event log and configure your service application to write to it, you must not attempt to access the event log before setting the service's ServiceName property in your code. The event log needs this property's value to register your service as a valid source of events.
Set the AutoLog property for your component to true
.
Note
By default, this property is set to true
. You do not need to set this explicitly unless you are building more complex processing, such as evaluating a condition and then setting the AutoLog property based on the result of that condition.
Set the AutoLog property for your component to false
.
AutoLog = false;
Me.AutoLog = False
Set the AutoLog property to false
.
Note
You must set AutoLog to false in order to use a custom log.
Set up an instance of an EventLog component in your Windows Service application.
Create a custom log by calling the CreateEventSource method and specifying the source string and the name of the log file you want to create.
Set the Source property on the EventLog component instance to the source string you created in step 3.
Write your entries by accessing the WriteEntry method on the EventLog component instance.
The following code shows how to set up logging to a custom log.
Note
In this code example, an instance of an EventLog component is named eventLog1
(EventLog1
in Visual Basic). If you created an instance with another name in step 2, change the code accordingly.
public UserService2()
{
_eventLog1 = new EventLog();
// Turn off autologging
AutoLog = false;
// create an event source, specifying the name of a log that
// does not currently exist to create a new, custom log
if (!EventLog.SourceExists("MySource"))
{
EventLog.CreateEventSource(
"MySource", "MyLog");
}
// configure the event log instance to use this source name
_eventLog1.Source = "MySource";
_eventLog1.Log = "MyLog";
}
Public Sub New()
' Turn off autologging
Me.AutoLog = False
' Create a new event source and specify a log name that
' does not exist to create a custom log
If Not System.Diagnostics.EventLog.SourceExists("MySource") Then
System.Diagnostics.EventLog.CreateEventSource("MySource",
"MyLog")
End If
' Configure the event log instance to use this source name
EventLog1.Source = "MySource"
End Sub
protected override void OnStart(string[] args)
{
// write an entry to the log
_eventLog1.WriteEntry("In OnStart.");
}
Protected Overrides Sub OnStart(ByVal args() As String)
' Write an entry to the log you've created.
EventLog1.WriteEntry("In Onstart.")
End Sub
.NET feedback
.NET is an open source project. Select a link to provide feedback:
Training
Module
Capture Web Application Logs with App Service Diagnostics Logging - Training
Learn about how to capture trace output from your Azure web apps. View a live log stream and download logs files for offline analysis.
Documentation
How to: Install and uninstall Windows services - .NET Framework
See how to install and uninstall Windows services. If you're developing a Windows service with .NET, you can use InstallUtil.exe or PowerShell.
Introduction to Windows Service Applications - .NET Framework
Read an introduction to Windows service applications. Services let you create long-running executable applications that run in their own Windows sessions.
How to: Debug Windows Service Applications - .NET Framework
Understand how to debug Windows service applications, which aren't as straightforward to debug as other Visual Studio application types.