fix: comment out log cull error in EntryPoint.cs

This commit is contained in:
goat 2021-10-10 19:29:39 +02:00
parent fcf7140293
commit f252c7bd3a
No known key found for this signature in database
GPG key ID: 7773BB5B43BA52E5

View file

@ -182,9 +182,13 @@ namespace Dalamud
}
catch (Exception ex)
{
Log.Error(ex, "Log cull failed");
/*
var caption = "XIVLauncher Error";
var message = $"Log cull threw an exception: {ex.Message}\n{ex.StackTrace ?? string.Empty}";
_ = MessageBoxW(IntPtr.Zero, message, caption, MessageBoxType.IconError | MessageBoxType.Ok);
*/
}
}