0

我有一个 C#/XAML 应用程序,我使用 ETW 将事件记录到平面文件。

9/10 次未设置 StorageFile 并且未记录我的事件。

构造函数:

public AppEventSource(string logFileName)
{
    this._logFileName = logFileName;
    AssignLocalFile();
}

private async void AssignLocalFile()
{
    _storageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync(
        _logFileName), 
        CreationCollisonOption.OpenIfExists);
}

private async void WriteToFile(IEnumerable<string> lines)
{
    await _semaphore.WaitAsync();

    await Task.Run(async() =>
    {
        await FileIO.AppendLinesAsync(_storageFile, lines);
        _semaphore.Release();
    });
}

protected override void OnEventWritten(EventWrittenEventArgs eventData)
{
    if(_storageFile == null) return;
    List<string> lines = new List<string>();
    // formatting stuff....
    WriteToFile(lines);
}

始终创建文件,但未写入 9/10 次。

以下是我设置监听器的方式供参考:

EventListener informationListener = new AppEventsListener("Information");
informationListener.EnableEvents(AppEventsSource.Log, EventLevel.Informational);

和示例日志:

AppEventsSource.Log.Info("log entry #1");
4

0 回答 0