2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

Use same process to determine journal path in JournalPoke method.

This commit is contained in:
Xjph 2021-06-07 09:20:53 -02:30
parent 2349a30a2e
commit a408e802d4

View File

@ -103,8 +103,6 @@ namespace Observatory
#endregion
#region Private Fields
private FileSystemWatcher journalWatcher;
@ -137,7 +135,7 @@ namespace Observatory
statusWatcher.Changed += StatusUpdateEvent;
}
private DirectoryInfo GetJournalFolder(string path)
private DirectoryInfo GetJournalFolder(string path = "")
{
DirectoryInfo logDirectory;
@ -252,9 +250,10 @@ namespace Observatory
{
while (monitoring)
{
var journalFolder = GetJournalFolder();
FileInfo fileToPoke = null;
foreach (var file in new DirectoryInfo(Properties.Core.Default.JournalFolder).GetFiles("Journal.????????????.??.log"))
foreach (var file in journalFolder.GetFiles("Journal.????????????.??.log"))
{
if (fileToPoke == null || string.Compare(file.Name, fileToPoke.Name) > 0)
{