mirror of
https://github.com/sphildreth/roadie
synced 2024-11-26 22:20:21 +00:00
14 lines
321 B
C#
14 lines
321 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Microsoft.Extensions.Logging
|
|
{
|
|
public static class LoggerExtensions
|
|
{
|
|
public static void LogError(this ILogger logger, Exception ex)
|
|
{
|
|
logger.LogError(default(EventId), ex, null, null);
|
|
}
|
|
}
|
|
}
|