mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 12:46:47 +02:00
Move websearch images to %APPDATA%
This commit is contained in:
@@ -29,10 +29,10 @@ namespace Wox.Infrastructure.Logger
|
||||
private static string CallerType()
|
||||
{
|
||||
var stackTrace = new StackTrace();
|
||||
var stackFrames = stackTrace.GetFrames().RequireNonNull();
|
||||
var stackFrames = stackTrace.GetFrames().NonNull();
|
||||
var callingFrame = stackFrames[2];
|
||||
var method = callingFrame.GetMethod();
|
||||
var type = $"{method.DeclaringType.RequireNonNull().FullName}.{method.Name}";
|
||||
var type = $"{method.DeclaringType.NonNull().FullName}.{method.Name}";
|
||||
return type;
|
||||
}
|
||||
public static void Error(System.Exception e)
|
||||
|
||||
Reference in New Issue
Block a user