mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
42 lines
2.4 KiB
C#
42 lines
2.4 KiB
C#
|
|
// Copyright (c) Microsoft Corporation
|
||
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
||
|
|
// See the LICENSE file in the project root for more information.
|
||
|
|
|
||
|
|
using ManagedCommon;
|
||
|
|
using Microsoft.CmdPal.Core.Common;
|
||
|
|
|
||
|
|
namespace Microsoft.CmdPal.UI;
|
||
|
|
|
||
|
|
internal sealed class LogWrapper : ILogger
|
||
|
|
{
|
||
|
|
public void LogError(string message, Exception ex, [System.Runtime.CompilerServices.CallerMemberName] string memberName = "", [System.Runtime.CompilerServices.CallerFilePath] string sourceFilePath = "", [System.Runtime.CompilerServices.CallerLineNumber] int sourceLineNumber = 0)
|
||
|
|
{
|
||
|
|
Logger.LogError(message, ex, memberName, sourceFilePath, sourceLineNumber);
|
||
|
|
}
|
||
|
|
|
||
|
|
public void LogError(string message, [System.Runtime.CompilerServices.CallerMemberName] string memberName = "", [System.Runtime.CompilerServices.CallerFilePath] string sourceFilePath = "", [System.Runtime.CompilerServices.CallerLineNumber] int sourceLineNumber = 0)
|
||
|
|
{
|
||
|
|
Logger.LogError(message, memberName, sourceFilePath, sourceLineNumber);
|
||
|
|
}
|
||
|
|
|
||
|
|
public void LogWarning(string message, [System.Runtime.CompilerServices.CallerMemberName] string memberName = "", [System.Runtime.CompilerServices.CallerFilePath] string sourceFilePath = "", [System.Runtime.CompilerServices.CallerLineNumber] int sourceLineNumber = 0)
|
||
|
|
{
|
||
|
|
Logger.LogWarning(message, memberName, sourceFilePath, sourceLineNumber);
|
||
|
|
}
|
||
|
|
|
||
|
|
public void LogInfo(string message, [System.Runtime.CompilerServices.CallerMemberName] string memberName = "", [System.Runtime.CompilerServices.CallerFilePath] string sourceFilePath = "", [System.Runtime.CompilerServices.CallerLineNumber] int sourceLineNumber = 0)
|
||
|
|
{
|
||
|
|
Logger.LogInfo(message, memberName, sourceFilePath, sourceLineNumber);
|
||
|
|
}
|
||
|
|
|
||
|
|
public void LogDebug(string message, [System.Runtime.CompilerServices.CallerMemberName] string memberName = "", [System.Runtime.CompilerServices.CallerFilePath] string sourceFilePath = "", [System.Runtime.CompilerServices.CallerLineNumber] int sourceLineNumber = 0)
|
||
|
|
{
|
||
|
|
Logger.LogDebug(message, memberName, sourceFilePath, sourceLineNumber);
|
||
|
|
}
|
||
|
|
|
||
|
|
public void LogTrace([System.Runtime.CompilerServices.CallerMemberName] string memberName = "", [System.Runtime.CompilerServices.CallerFilePath] string sourceFilePath = "", [System.Runtime.CompilerServices.CallerLineNumber] int sourceLineNumber = 0)
|
||
|
|
{
|
||
|
|
Logger.LogTrace(memberName, sourceFilePath, sourceLineNumber);
|
||
|
|
}
|
||
|
|
}
|