本文整理汇总了C#中ConsoleLogger.LogWarning方法的典型用法代码示例。如果您正苦于以下问题:C# ConsoleLogger.LogWarning方法的具体用法?C# ConsoleLogger.LogWarning怎么用?C# ConsoleLogger.LogWarning使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ConsoleLogger
的用法示例。
在下文中一共展示了ConsoleLogger.LogWarning方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CLogger_NoExceptionOnNullArgs
public void CLogger_NoExceptionOnNullArgs()
{
// 1. Logger without timestamps
ConsoleLogger logger = new ConsoleLogger(includeTimestamp: false);
logger.LogInfo(null, null);
logger.LogInfo("123", null);
logger.LogWarning(null, null);
logger.LogWarning("123", null);
logger.LogError(null, null);
logger.LogError("123", null);
// 2. Logger without timestamps
logger = new ConsoleLogger(includeTimestamp: true);
logger.LogInfo(null, null);
logger.LogInfo("123", null);
logger.LogWarning(null, null);
logger.LogWarning("123", null);
logger.LogError(null, null);
logger.LogError("123", null);
}
示例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();
}
示例3: CLogger_ExpectedMessages_Warning
public void CLogger_ExpectedMessages_Warning()
{
// NOTE: we expect all warnings to be prefixed with a localised
// "WARNING" prefix, so we're using "AssertLastMessageEndsWith"
// even for warnings that do not have timestamps.
using (OutputCaptureScope output = new OutputCaptureScope())
{
// 1. Logger without timestamps
ConsoleLogger logger = new ConsoleLogger(includeTimestamp: false);
logger.LogWarning("warn1");
output.AssertLastMessageEndsWith("warn1");
logger.LogWarning("warn2", null);
output.AssertLastMessageEndsWith("warn2");
logger.LogWarning("warn3 {0}", "xxx");
output.AssertLastMessageEndsWith("warn3 xxx");
// 2. Logger with timestamps
logger = new ConsoleLogger(includeTimestamp: true);
logger.LogWarning("warn4");
output.AssertLastMessageEndsWith("warn4");
logger.LogWarning("warn5{0}{1}", null, null);
output.AssertLastMessageEndsWith("warn5");
logger.LogWarning("warn6 {0}{1}", "xxx", "yyy", "zzz");
output.AssertLastMessageEndsWith("warn6 xxxyyy");
}
}