public void LocalEventLog_LogWarningFormat() { ILocalLog log = new LocalEventLog { IsTest = true }; log.LogWarningFormat("Warning"); }
public void LocalEventLog_LogInformation() { ILocalLog log = new LocalEventLog { IsTest = true }; log.LogInformation("Information"); }
public void LocalEventLog_LogErrorFormat() { ILocalLog log = new LocalEventLog { IsTest = true }; log.LogErrorFormat("Error"); }