fix: Log all silent exceptions

This commit is contained in:
Gustave Monce
2024-08-30 21:43:30 +02:00
parent 350b6e8f1e
commit c21692491d
20 changed files with 224 additions and 51 deletions
@@ -115,7 +115,10 @@ namespace WPinternals
LogWatcher.Enabled = true;
App.IsPnPEventLogMissing = false;
}
catch { }
catch (Exception ex)
{
LogFile.LogException(ex, LogType.FileOnly);
}
}
private void PnPEventWritten(Object obj, EventRecordWrittenEventArgs arg)