本文整理汇总了C#中ConsoleLogger.LogException方法的典型用法代码示例。如果您正苦于以下问题:C# ConsoleLogger.LogException方法的具体用法?C# ConsoleLogger.LogException怎么用?C# ConsoleLogger.LogException使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ConsoleLogger
的用法示例。
在下文中一共展示了ConsoleLogger.LogException方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
static void Main(string[] args)
{
var logger = new ConsoleLogger();
CommandLineArguments clargs;
try
{
clargs = args.As<CommandLineArguments>();
}
catch (ArgumentException ex)
{
logger.LogException(ex);
Console.WriteLine();
Console.WriteLine(AppArgs.HelpFor<CommandLineArguments>());
return;
}
var weavers = FindWeavers(clargs);
using (IInnerWeaver innerWeaver = new InnerWeaver())
{
// Default
innerWeaver.KeyFilePath = "";
innerWeaver.SignAssembly = false;
// Not from args
innerWeaver.Logger = logger;
innerWeaver.Weavers = weavers.ToList();
// From args
innerWeaver.AssemblyFilePath = clargs.AssemblyFilePath;
innerWeaver.References = clargs.References;
innerWeaver.SolutionDirectoryPath = clargs.SolutionDirectory;
innerWeaver.IntermediateDirectoryPath = Path.GetDirectoryName(clargs.AssemblyFilePath);
innerWeaver.DefineConstants = clargs.DefineConstants.Split(';').ToList();
innerWeaver.ProjectDirectoryPath = clargs.ProjectDirectoryPath;
innerWeaver.ReferenceCopyLocalPaths = clargs.ReferenceCopyLocalPaths?.Split(';').ToList();
innerWeaver.Execute();
}
}
示例2: Main
static void Main( string[] args )
{
var client = new AmazonCloudWatchLogsClient();
var logger = new ConsoleLogger() + new TextFileLogger( @"C:\Temp\Logs\1.log" ) + new TextFileLogger( new DirectoryInfo( @"C:\Temp\Logs\Test" ) )
+ CloudWatchLogger.AppendStream( client, "Test", "Test" );
var watch = new Stopwatch();
watch.Restart();
for ( int i = 0; i < 10000; i++ )
{
logger.LogInfo( "Hello World!" );
logger.LogInfo( "Hello World!" );
logger.LogWarning( "Multiline\r\nLogs\r\n" );
logger.LogError( "This has an error!" );
logger.LogError( "This has an error!" );
logger.LogError( "This has an error!" );
try
{
throw new Exception( "Test exception!" );
}
catch ( Exception e )
{
logger.LogException( e );
}
}
watch.Stop();
Console.WriteLine( watch.Elapsed );
TextLogFileManager.AutoFlush = false;
watch.Restart();
for ( int i = 0; i < 10000; i++ )
{
logger.LogInfo( "Hello World!" );
logger.LogInfo( "Hello World!" );
logger.LogWarning( "Multiline\r\nLogs\r\n" );
logger.LogError( "This has an error!" );
logger.LogError( "This has an error!" );
logger.LogError( "This has an error!" );
try
{
throw new Exception( "Test exception!" );
}
catch ( Exception e )
{
logger.LogException( e );
}
}
TextLogFileManager.Flush();
watch.Stop();
Console.WriteLine( watch.Elapsed );
Console.ReadLine();
}