Exemplo n.º 1
0
        public void Debug()
        {
            var service = new SampleService();

            service.LogDebug();
        }
Exemplo n.º 2
0
        public void Fatal()
        {
            var service = new SampleService();

            service.LogFatal();
        }
Exemplo n.º 3
0
        public void Error()
        {
            var service = new SampleService();

            service.LogError();
        }
Exemplo n.º 4
0
        public void Warning()
        {
            var service = new SampleService();

            service.LogWarning();
        }
Exemplo n.º 5
0
        public void Info()
        {
            var service = new SampleService();

            service.LogInfo();
        }
Exemplo n.º 6
0
        public void Trace()
        {
            var service = new SampleService();

            service.LogTrace();
        }