FileLogger.Start Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.