本文整理汇总了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);
}
}
示例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));
}