FileLogger.Start Method

Definition

Overloads

Start(String, String[])

Starts logging to a file.

Start(String, Boolean, String[])

Starts logging to a file.

Start(String, String[])

Starts logging to a file.

public static void Start (string filePath, params string[] filters);
static member Start : string * string[] -> unit
Public Shared Sub Start (filePath As String, ParamArray filters As String())

Parameters

filePath
String

Path to log file

filters
String[]

Filters that will be applied to lines logged to the file.

Applies to

Start(String, Boolean, String[])

Starts logging to a file.

public static void Start (string filePath, bool append, params string[] filters);
static member Start : string * bool * string[] -> unit
Public Shared Sub Start (filePath As String, append As Boolean, ParamArray filters As String())

Parameters

filePath
String

Path to log file

append
Boolean

Wether or not any existing log file should be appended to.

filters
String[]

Filters that will be applied to lines logged to the file.

Applies to