| Name | Description of the |
---|
 | Logger |
Parameterless constructor: sets the log file to
GetEnvironmentVariable("TEMP") + \ + ProductName + @".log"
and calls the next constructor.
|
 | Logger(Boolean) |
Constructor: takes over plainMessage,
sets the log file to GetEnvironmentVariable("TEMP") + \ + ProductName + @".log"
and calls the next constructor.
|
 | Logger(String) |
Constructor: takes over logFilePathName,
sets plainMessage to false
and calls the next constructor.
|
 | Logger(Boolean, String) |
Constructor: takes over plainMessage and regexFilter,
sets the log file to GetEnvironmentVariable("TEMP") + \ + ProductName + @".log"
and calls the next constructor.
|
 | Logger(String, Boolean) |
Constructor: takes over logFilePathName and plainMessage,
sets regexFilter to ""
and calls the next constructor.
|
 | Logger(String, String, Boolean) |
Complete constructor.
|