 | Logger(Boolean, String) Constructor |
Constructor: takes over plainMessage and regexFilter,
sets the log file to GetEnvironmentVariable("TEMP") + \ + ProductName + @".log"
and calls the next constructor.
Namespace: NetEti.ApplicationControlAssembly: NetEti.Logging (in NetEti.Logging.dll) Version: 1.0.0+b865061c8026804ece26684b7dc3403284234a08
Syntaxpublic Logger(
bool plainMessage,
string regexFilter
)
Public Sub New (
plainMessage As Boolean,
regexFilter As String
)
public:
Logger(
bool plainMessage,
String^ regexFilter
)
new :
plainMessage : bool *
regexFilter : string -> Logger
Parameters
- plainMessage Boolean
- If true, no additional information is output (default: false).
- regexFilter String
- Only lines that fulfil this regular expression are logged.
See also