Example #1
0
        public void LocalEventLog_LogWarningFormat()
        {
            ILocalLog log = new LocalEventLog {
                IsTest = true
            };

            log.LogWarningFormat("Warning");
        }
Example #2
0
        public void LocalEventLog_LogInformation()
        {
            ILocalLog log = new LocalEventLog {
                IsTest = true
            };

            log.LogInformation("Information");
        }
Example #3
0
        public void LocalEventLog_LogErrorFormat()
        {
            ILocalLog log = new LocalEventLog {
                IsTest = true
            };

            log.LogErrorFormat("Error");
        }