C# Class FaceDetection.Model.Logger

Public Logger class. Logs the input to the diagnostics log created in %localappdata%
Datei anzeigen Open project: PkInfRemi/FaceDetectionApp

Public Methods

Method Description
CriticalError ( string content ) : void

Logs critical errors

Error ( string content ) : void

Logs errors

Info ( string content ) : void

Logs information data

Warning ( string content ) : void

Logs warnings

Private Methods

Method Description
Log ( string content ) : void

Logs the given string to the diagnostics log

Method Details

CriticalError() public static method

Logs critical errors
public static CriticalError ( string content ) : void
content string
return void

Error() public static method

Logs errors
public static Error ( string content ) : void
content string
return void

Info() public static method

Logs information data
public static Info ( string content ) : void
content string
return void

Warning() public static method

Logs warnings
public static Warning ( string content ) : void
content string
return void