Use
Targets are used to display, store, or pass log messages to another destination. There are two kinds of target; those that receive and handle the messages, and those that buffer or route the messages to another target. The second group are called 'wrapper' targets.
NLog supports creating custom targets. For more information, see: Extending NLog
Targets
-
AspResponse - Outputs log messages through the ASP Response object.
-
Chainsaw - Sends log messages to the remote instance of Chainsaw application from log4j.
-
ColoredConsole - Writes log messages to the console with customizable coloring.
-
Console - Writes log messages to the console.
-
Database - Writes log messages to the database using an ADO.NET provider.
-
Debug - Mock target - useful for testing.
-
Debugger - Writes log messages to the attached managed debugger.
-
EventLog - Writes log message to the Event Log.
-
File - Writes log messages to one or more files.
-
LogReceiverService - Sends log messages to a NLog Receiver Service (using WCF or Web Services).
-
Mail - Sends log messages by email using SMTP protocol.
-
Memory - Writes log messages to an ArrayList in memory for programmatic retrieval.
-
MethodCall - Calls the specified static method on each log message and passes contextual parameters to it.
-
Network - Sends log messages over the network.
-
NLogViewer - Sends log messages to the remote instance of NLog Viewer.
-
Null - Discards log messages. Used mainly for debugging and benchmarking.
-
OutputDebugString - Outputs log messages through the OutputDebugString() Win32 API.
-
PerfCounter - Increments specified performance counter on each write.
-
Trace - Sends log messages through System.Diagnostics.Trace.
-
WebService - Calls the specified web service on each log message.
Wrappers
-
MSMQ - Writes log message to the specified message queue handled by MSMQ.
-
AspNetTrace - Writes log messages to the ASP.NET trace.
Wrappers
-
AspNetBufferingWrapper - Buffers log events for the duration of ASP.NET request and sends them down to the wrapped target at the end of a request.
-
FormControl - Logs text to Windows.Forms.Control.Text property control of specified Name.
-
MessageBox - Pops up log messages as message boxes.
-
RichTextBox - Log text a Rich Text Box control in an existing or new form.
External packages
External packages, not maintained by the NLog team.
Writing your own target
NLog supports custom target. For more information, see: Extending NLog