Example #1
0
        public void Debug()
        {
            var service = new SampleService();

            service.LogDebug();
        }
Example #2
0
        public void Fatal()
        {
            var service = new SampleService();

            service.LogFatal();
        }
Example #3
0
        public void Error()
        {
            var service = new SampleService();

            service.LogError();
        }
Example #4
0
        public void Warning()
        {
            var service = new SampleService();

            service.LogWarning();
        }
Example #5
0
        public void Info()
        {
            var service = new SampleService();

            service.LogInfo();
        }
Example #6
0
        public void Trace()
        {
            var service = new SampleService();

            service.LogTrace();
        }