You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
encoding - File encoding name like "utf-8", "ascii" or "utf-16". See Encoding class on MSDN. Defaults to Encoding.Default.
Introduced in NLog 4.0.
StdErr - Indicates whether the error stream (stderr) should be used instead of the output stream (stdout). Layout Default: false
Before NLog v5.0 the property was named error.
Before NLog v6.0 the property was boolean instead of NLog Layout
detectConsoleAvailable - Indicates whether the console target should disable itself when no console detected. Boolean Default: false
Introduced in NLog 4.3.10 with default: true, then NLog 4.4 changed default to false.
autoFlush - Performs explicit flush after every console write. Useful if having redirected to custom console-stream that doesn't has autoflush enabled. Boolean. Default = False.
Introduced in NLog 4.6.3
ForceWriteLine - Call Console.WriteLine instead of writing directly to buffer using Console.Write. Available if doing console-redirection that requires Console.WriteLine. Default: False.
Introduced with NLog v6.0 (Renamed WriteBuffer that was introduced in v4.6.8)