當前位置: 首頁>>代碼示例>>C#>>正文


C# LoggingConfiguration.FindTargetByName方法代碼示例

本文整理匯總了C#中NLog.Config.LoggingConfiguration.FindTargetByName方法的典型用法代碼示例。如果您正苦於以下問題:C# LoggingConfiguration.FindTargetByName方法的具體用法?C# LoggingConfiguration.FindTargetByName怎麽用?C# LoggingConfiguration.FindTargetByName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在NLog.Config.LoggingConfiguration的用法示例。


在下文中一共展示了LoggingConfiguration.FindTargetByName方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: LoggingConfiguration

        public LoggingConfiguration(IProgram program, IOperatingSystem os, IVSServices vsservice)
        {
            NLog.Config.LoggingConfiguration conf;
            string assemblyFolder = program.ExecutingAssemblyDirectory;
            try
            {
                conf = new XmlLoggingConfiguration(Path.Combine(assemblyFolder, "NLog.config"), true);
            }
            catch (Exception ex)
            {
                vsservice.ActivityLogError(string.Format(CultureInfo.InvariantCulture, "Error loading nlog.config. {0}", ex));
                conf = new NLog.Config.LoggingConfiguration();
            }

            var fileTarget = conf.FindTargetByName("file") as FileTarget;
            if (fileTarget == null)
            {
                fileTarget = new FileTarget();
                conf.AddTarget(Path.GetRandomFileName(), fileTarget);
                conf.LoggingRules.Add(new LoggingRule("*", LogLevel.Info, fileTarget));
            }
            fileTarget.FileName = Path.Combine(os.Environment.GetLocalGitHubApplicationDataPath(), "extension.log");
            fileTarget.Layout = layout;

            try
            {
                LogManager.Configuration = conf;
            }
            catch (Exception ex)
            {
                vsservice.ActivityLogError(string.Format(CultureInfo.InvariantCulture, "Error configuring the log. {0}", ex));
            }
        }
開發者ID:chris134pravin,項目名稱:VisualStudio,代碼行數:33,代碼來源:LoggingConfiguration.cs

示例2: AddTarget_testname_param

        public void AddTarget_testname_param()
        {
            var config = new LoggingConfiguration();
            config.AddTarget("name1", new FileTarget {Name = "name2"});
            var allTargets = config.AllTargets;
            Assert.NotNull(allTargets);
            Assert.Equal(1, allTargets.Count);

            //maybe confusing, but the name of the target is not changed, only the one of the key.
            Assert.Equal("name2", allTargets.First().Name);
            Assert.NotNull(config.FindTargetByName<FileTarget>("name1"));
        }
開發者ID:CharlieBP,項目名稱:NLog,代碼行數:12,代碼來源:ConfigApiTests.cs

示例3: AddTarget_testname_fromtarget

 public void AddTarget_testname_fromtarget()
 {
     var config = new LoggingConfiguration();
     config.AddTarget(new FileTarget {Name = "name2"});
     var allTargets = config.AllTargets;
     Assert.NotNull(allTargets);
     Assert.Equal(1, allTargets.Count);
     Assert.Equal("name2", allTargets.First().Name);
     Assert.NotNull(config.FindTargetByName<FileTarget>("name2"));
 }
開發者ID:CharlieBP,項目名稱:NLog,代碼行數:10,代碼來源:ConfigApiTests.cs

示例4: AddRule_with_target

 public void AddRule_with_target()
 {
     var config = new LoggingConfiguration();
     var fileTarget = new FileTarget {Name = "File"};
     config.AddRuleForOneLevel(LogLevel.Error, fileTarget, "*a");
     Assert.NotNull(config.LoggingRules);
     Assert.Equal(1, config.LoggingRules.Count);
     config.AddTarget(new FileTarget {Name = "File"});
     var allTargets = config.AllTargets;
     Assert.NotNull(allTargets);
     Assert.Equal(1, allTargets.Count);
     Assert.Equal("File", allTargets.First().Name);
     Assert.NotNull(config.FindTargetByName<FileTarget>("File"));
 }
開發者ID:CharlieBP,項目名稱:NLog,代碼行數:14,代碼來源:ConfigApiTests.cs

示例5: GetDebugTarget

 protected NLog.Targets.DebugTarget GetDebugTarget(string targetName, LoggingConfiguration configuration)
 {
     var debugTarget = (NLog.Targets.DebugTarget)configuration.FindTargetByName(targetName);
     Assert.NotNull(debugTarget);
     return debugTarget;
 }
開發者ID:rosj91,項目名稱:NLog,代碼行數:6,代碼來源:NLogTestBase.cs


注:本文中的NLog.Config.LoggingConfiguration.FindTargetByName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。