Ejemplo n.º 1
0
        protected override void OnBefore(IInvocation invocation)
        {
            var log = new LoggerConfiguration()
                      .WriteTo.File("log.txt", rollingInterval: RollingInterval.Day)
                      .CreateLogger();

            Console.WriteLine("Ben sonuc öncesi log alıyorum");
            _logger.Info("Fatal log onBefore");
        }