当前位置: 首页>>代码示例>>C#>>正文


C# ILog.Information方法代码示例

本文整理汇总了C#中ILog.Information方法的典型用法代码示例。如果您正苦于以下问题:C# ILog.Information方法的具体用法?C# ILog.Information怎么用?C# ILog.Information使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ILog的用法示例。


在下文中一共展示了ILog.Information方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Flush

        public static void Flush(ILog log)
        {
            log.Information("[Spells.TargetParser] Statistiques sur les cibles :");

            foreach (var typePair in typeCount.OrderByDescending(tc => tc.Value))
            {
                log.Information(" - {0} {1}", typePair.Value, typePair.Key);
            }
        }
开发者ID:Pathfinder-Fr,项目名称:WikiExportParser,代码行数:9,代码来源:TargetParser.cs

示例2: Application_Start

        protected void Application_Start()
        {
            if (IsDebug) Thread.Sleep(2000);  // Wait for RavenDB to start in debug

            // Build the container
            var builder = new ContainerBuilder();
            builder.RegisterModule(new MvcModule());
            builder.RegisterModule<PersistenceModule>();
            builder.RegisterModule<SecurityModule>();
            builder.RegisterModule<DiagnosticsModule>();
            builder.RegisterModule<TimeModule>();
            _container = builder.Build();
            DependencyResolver.SetResolver(new AutofacDependencyResolver(_container));
            _log = _container.Resolve<ILog<MvcApplication>>();
            _log.Information("Application_Start");

            // And do all of the MVC stuff
            AreaRegistration.RegisterAllAreas();
            // We use JSON.NET instead
            ValueProviderFactories.Factories.Remove(ValueProviderFactories.Factories.OfType<JsonValueProviderFactory>().First());

            RegisterGlobalFilters(GlobalFilters.Filters);
            RegisterRoutes(RouteTable.Routes);

            DataAnnotationsModelValidatorProvider.RegisterAdapter(
                typeof (RequiredIfAttribute),
                typeof (RequiredIfValidator));
        }
开发者ID:highwaychurch,项目名称:web,代码行数:28,代码来源:Global.asax.cs


注:本文中的ILog.Information方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。