Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added LogMessageGenerator overloads for exceptions #2051

Merged
merged 4 commits into from
Apr 9, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
179 changes: 179 additions & 0 deletions src/NLog/ILoggerExtensions.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,179 @@
//
// Copyright (c) 2004-2016 Jaroslaw Kowalski <jaak@jkowalski.net>, Kim Christensen, Julian Verdurmen
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * Neither the name of Jaroslaw Kowalski nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
// THE POSSIBILITY OF SUCH DAMAGE.
//

namespace NLog
{
using System;

/// <summary>
/// Extensions for NLog <see cref="ILogger"/>.
/// </summary>
public static class ILoggerExtensions
{
/// <summary>
/// Writes the diagnostic message and exception at the specified level.
/// </summary>
/// <param name="logger">A logger implementation that will handle the message.</param>
/// <param name="level">The log level.</param>
/// <param name="exception">An exception to be logged.</param>
/// <param name="messageFunc">A function returning message to be written. Function is not evaluated if logging is not enabled.</param>
[CLSCompliant(false)]
public static void Log(this ILogger logger, LogLevel level, Exception exception, LogMessageGenerator messageFunc)
{
if (logger.IsEnabled(level))
{
logger.Log(level, exception, messageFunc(), null);
}
}

/// <summary>
/// Writes the diagnostic message and exception at the <c>Trace</c> level.
/// </summary>
/// <param name="logger">A logger implementation that will handle the message.</param>
/// <param name="exception">An exception to be logged.</param>
/// <param name="messageFunc">A function returning message to be written. Function is not evaluated if logging is not enabled.</param>
[CLSCompliant(false)]
public static void Trace(this ILogger logger, Exception exception, LogMessageGenerator messageFunc)
{
if (logger.IsTraceEnabled)
{
if (messageFunc == null)
{
throw new ArgumentNullException("messageFunc");
}

logger.Trace(exception, messageFunc());
}
}

/// <summary>
/// Writes the diagnostic message and exception at the <c>Debug</c> level.
/// </summary>
/// <param name="logger">A logger implementation that will handle the message.</param>
/// <param name="exception">An exception to be logged.</param>
/// <param name="messageFunc">A function returning message to be written. Function is not evaluated if logging is not enabled.</param>
[CLSCompliant(false)]
public static void Debug(this ILogger logger, Exception exception, LogMessageGenerator messageFunc)
{
if (logger.IsDebugEnabled)
{
if (messageFunc == null)
{
throw new ArgumentNullException("messageFunc");
}

logger.Debug(exception, messageFunc());
}
}

/// <summary>
/// Writes the diagnostic message and exception at the <c>Info</c> level.
/// </summary>
/// <param name="logger">A logger implementation that will handle the message.</param>
/// <param name="exception">An exception to be logged.</param>
/// <param name="messageFunc">A function returning message to be written. Function is not evaluated if logging is not enabled.</param>
[CLSCompliant(false)]
public static void Info(this ILogger logger, Exception exception, LogMessageGenerator messageFunc)
{
if (logger.IsInfoEnabled)
{
if (messageFunc == null)
{
throw new ArgumentNullException("messageFunc");
}

logger.Info(exception, messageFunc());
}
}

/// <summary>
/// Writes the diagnostic message and exception at the <c>Warn</c> level.
/// </summary>
/// <param name="logger">A logger implementation that will handle the message.</param>
/// <param name="exception">An exception to be logged.</param>
/// <param name="messageFunc">A function returning message to be written. Function is not evaluated if logging is not enabled.</param>
[CLSCompliant(false)]
public static void Warn(this ILogger logger, Exception exception, LogMessageGenerator messageFunc)
{
if (logger.IsWarnEnabled)
{
if (messageFunc == null)
{
throw new ArgumentNullException("messageFunc");
}

logger.Warn(exception, messageFunc());
}
}

/// <summary>
/// Writes the diagnostic message and exception at the <c>Error</c> level.
/// </summary>
/// <param name="logger">A logger implementation that will handle the message.</param>
/// <param name="exception">An exception to be logged.</param>
/// <param name="messageFunc">A function returning message to be written. Function is not evaluated if logging is not enabled.</param>
[CLSCompliant(false)]
public static void Error(this ILogger logger, Exception exception, LogMessageGenerator messageFunc)
{
if (logger.IsErrorEnabled)
{
if (messageFunc == null)
{
throw new ArgumentNullException("messageFunc");
}

logger.Error(exception, messageFunc());
}
}

/// <summary>
/// Writes the diagnostic message and exception at the <c>Fatal</c> level.
/// </summary>
/// <param name="logger">A logger implementation that will handle the message.</param>
/// <param name="exception">An exception to be logged.</param>
/// <param name="messageFunc">A function returning message to be written. Function is not evaluated if logging is not enabled.</param>
[CLSCompliant(false)]
public static void Fatal(this ILogger logger, Exception exception, LogMessageGenerator messageFunc)
{
if (logger.IsFatalEnabled)
{
if (messageFunc == null)
{
throw new ArgumentNullException("messageFunc");
}

logger.Fatal(exception, messageFunc());
}
}
}
}
1 change: 1 addition & 0 deletions src/NLog/NLog.Xamarin.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
<Compile Include="ILogger.cs" />
<Compile Include="ILoggerBase.cs" />
<Compile Include="ILoggerBase-V1.cs" />
<Compile Include="ILoggerExtensions.cs" />
<Compile Include="ILogger-V1.cs" />
<Compile Include="Internal\AppendBuilderCreator.cs" />
<Compile Include="Internal\ArrayHelper.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.Xamarin.iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@
<Compile Include="ILogger.cs" />
<Compile Include="ILoggerBase.cs" />
<Compile Include="ILoggerBase-V1.cs" />
<Compile Include="ILoggerExtensions.cs" />
<Compile Include="ILogger-V1.cs" />
<Compile Include="Internal\AppendBuilderCreator.cs" />
<Compile Include="Internal\ArrayHelper.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.doc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@
<Compile Include="ILogger.cs" />
<Compile Include="ILoggerBase.cs" />
<Compile Include="ILoggerBase-V1.cs" />
<Compile Include="ILoggerExtensions.cs" />
<Compile Include="ILogger-V1.cs" />
<Compile Include="Internal\AppendBuilderCreator.cs" />
<Compile Include="Internal\ArrayHelper.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.mono.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@
<Compile Include="ILogger.cs" />
<Compile Include="ILoggerBase.cs" />
<Compile Include="ILoggerBase-V1.cs" />
<Compile Include="ILoggerExtensions.cs" />
<Compile Include="ILogger-V1.cs" />
<Compile Include="Internal\AppendBuilderCreator.cs" />
<Compile Include="Internal\ArrayHelper.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.netfx35.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@
<Compile Include="ILogger.cs" />
<Compile Include="ILoggerBase.cs" />
<Compile Include="ILoggerBase-V1.cs" />
<Compile Include="ILoggerExtensions.cs" />
<Compile Include="ILogger-V1.cs" />
<Compile Include="Internal\AppendBuilderCreator.cs" />
<Compile Include="Internal\ArrayHelper.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.netfx40.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@
<Compile Include="ILogger.cs" />
<Compile Include="ILoggerBase.cs" />
<Compile Include="ILoggerBase-V1.cs" />
<Compile Include="ILoggerExtensions.cs" />
<Compile Include="ILogger-V1.cs" />
<Compile Include="Internal\AppendBuilderCreator.cs" />
<Compile Include="Internal\ArrayHelper.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.netfx45.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@
<Compile Include="ILogger.cs" />
<Compile Include="ILoggerBase.cs" />
<Compile Include="ILoggerBase-V1.cs" />
<Compile Include="ILoggerExtensions.cs" />
<Compile Include="ILogger-V1.cs" />
<Compile Include="Internal\AppendBuilderCreator.cs" />
<Compile Include="Internal\ArrayHelper.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.sl4.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@
<Compile Include="ILogger.cs" />
<Compile Include="ILoggerBase.cs" />
<Compile Include="ILoggerBase-V1.cs" />
<Compile Include="ILoggerExtensions.cs" />
<Compile Include="ILogger-V1.cs" />
<Compile Include="Internal\AppendBuilderCreator.cs" />
<Compile Include="Internal\ArrayHelper.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.sl5.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@
<Compile Include="ILogger.cs" />
<Compile Include="ILoggerBase.cs" />
<Compile Include="ILoggerBase-V1.cs" />
<Compile Include="ILoggerExtensions.cs" />
<Compile Include="ILogger-V1.cs" />
<Compile Include="Internal\AppendBuilderCreator.cs" />
<Compile Include="Internal\ArrayHelper.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.wp7.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@
<Compile Include="ILogger.cs" />
<Compile Include="ILoggerBase.cs" />
<Compile Include="ILoggerBase-V1.cs" />
<Compile Include="ILoggerExtensions.cs" />
<Compile Include="ILogger-V1.cs" />
<Compile Include="Internal\AppendBuilderCreator.cs" />
<Compile Include="Internal\ArrayHelper.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.wp71.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@
<Compile Include="ILogger.cs" />
<Compile Include="ILoggerBase.cs" />
<Compile Include="ILoggerBase-V1.cs" />
<Compile Include="ILoggerExtensions.cs" />
<Compile Include="ILogger-V1.cs" />
<Compile Include="Internal\AppendBuilderCreator.cs" />
<Compile Include="Internal\ArrayHelper.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.wp8.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@
<Compile Include="ILogger.cs" />
<Compile Include="ILoggerBase.cs" />
<Compile Include="ILoggerBase-V1.cs" />
<Compile Include="ILoggerExtensions.cs" />
<Compile Include="ILogger-V1.cs" />
<Compile Include="Internal\AppendBuilderCreator.cs" />
<Compile Include="Internal\ArrayHelper.cs" />
Expand Down
37 changes: 29 additions & 8 deletions tests/NLog.UnitTests/LayoutRenderers/ExceptionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,10 @@ public void ExceptionUsingLogMethodTest()
string exceptionMessage = "Test exception";
Exception ex = GetExceptionWithStackTrace(exceptionMessage);
logger.Log(LogLevel.Error, ex, "msg");
AssertDebugLastMessage("debug1", "ERROR*Test exception*" + typeof(InvalidOperationException).Name);
AssertDebugLastMessage("debug1", "ERROR*msg*Test exception*" + typeof(InvalidOperationException).Name);

logger.Log(LogLevel.Error, ex, () => "msg func");
AssertDebugLastMessage("debug1", "ERROR*msg func*Test exception*" + typeof(InvalidOperationException).Name);
}

[Fact]
Expand All @@ -305,7 +308,10 @@ public void ExceptionUsingTraceMethodTest()
string exceptionMessage = "Test exception";
Exception ex = GetExceptionWithStackTrace(exceptionMessage);
logger.Trace(ex, "msg");
AssertDebugLastMessage("debug1", "TRACE*Test exception*" + typeof(InvalidOperationException).Name);
AssertDebugLastMessage("debug1", "TRACE*msg*Test exception*" + typeof(InvalidOperationException).Name);

logger.Trace(ex, () => "msg func");
AssertDebugLastMessage("debug1", "TRACE*msg func*Test exception*" + typeof(InvalidOperationException).Name);
}

[Fact]
Expand All @@ -315,7 +321,10 @@ public void ExceptionUsingDebugMethodTest()
string exceptionMessage = "Test exception";
Exception ex = GetExceptionWithStackTrace(exceptionMessage);
logger.Debug(ex, "msg");
AssertDebugLastMessage("debug1", "DEBUG*Test exception*" + typeof(InvalidOperationException).Name);
AssertDebugLastMessage("debug1", "DEBUG*msg*Test exception*" + typeof(InvalidOperationException).Name);

logger.Debug(ex, () => "msg func");
AssertDebugLastMessage("debug1", "DEBUG*msg func*Test exception*" + typeof(InvalidOperationException).Name);
}

[Fact]
Expand All @@ -325,7 +334,10 @@ public void ExceptionUsingInfoMethodTest()
string exceptionMessage = "Test exception";
Exception ex = GetExceptionWithStackTrace(exceptionMessage);
logger.Info(ex, "msg");
AssertDebugLastMessage("debug1", "INFO*Test exception*" + typeof(InvalidOperationException).Name);
AssertDebugLastMessage("debug1", "INFO*msg*Test exception*" + typeof(InvalidOperationException).Name);

logger.Info(ex, () => "msg func");
AssertDebugLastMessage("debug1", "INFO*msg func*Test exception*" + typeof(InvalidOperationException).Name);
}

[Fact]
Expand All @@ -335,7 +347,10 @@ public void ExceptionUsingWarnMethodTest()
string exceptionMessage = "Test exception";
Exception ex = GetExceptionWithStackTrace(exceptionMessage);
logger.Warn(ex, "msg");
AssertDebugLastMessage("debug1", "WARN*Test exception*" + typeof(InvalidOperationException).Name);
AssertDebugLastMessage("debug1", "WARN*msg*Test exception*" + typeof(InvalidOperationException).Name);

logger.Warn(ex, () => "msg func");
AssertDebugLastMessage("debug1", "WARN*msg func*Test exception*" + typeof(InvalidOperationException).Name);
}

[Fact]
Expand All @@ -345,7 +360,10 @@ public void ExceptionUsingErrorMethodTest()
string exceptionMessage = "Test exception";
Exception ex = GetExceptionWithStackTrace(exceptionMessage);
logger.Error(ex, "msg");
AssertDebugLastMessage("debug1", "ERROR*Test exception*" + typeof(InvalidOperationException).Name);
AssertDebugLastMessage("debug1", "ERROR*msg*Test exception*" + typeof(InvalidOperationException).Name);

logger.Error(ex, () => "msg func");
AssertDebugLastMessage("debug1", "ERROR*msg func*Test exception*" + typeof(InvalidOperationException).Name);
}

[Fact]
Expand All @@ -355,7 +373,10 @@ public void ExceptionUsingFatalMethodTest()
string exceptionMessage = "Test exception";
Exception ex = GetExceptionWithStackTrace(exceptionMessage);
logger.Fatal(ex, "msg");
AssertDebugLastMessage("debug1", "FATAL*Test exception*" + typeof(InvalidOperationException).Name);
AssertDebugLastMessage("debug1", "FATAL*msg*Test exception*" + typeof(InvalidOperationException).Name);

logger.Fatal(ex, () => "msg func");
AssertDebugLastMessage("debug1", "FATAL*msg func*Test exception*" + typeof(InvalidOperationException).Name);
}

[Fact]
Expand Down Expand Up @@ -527,7 +548,7 @@ private void SetConfigurationForExceptionUsingRootMethodTests()
LogManager.Configuration = CreateConfigurationFromString(@"
<nlog>
<targets>
<target name='debug1' type='Debug' layout='${level:uppercase=true}*${exception:format=message,shorttype:separator=*}' />
<target name='debug1' type='Debug' layout='${level:uppercase=true}*${message}*${exception:format=message,shorttype:separator=*}' />
</targets>
<rules>
<logger minlevel='Trace' writeTo='debug1' />
Expand Down