From ce250e4f84dccdca8a8938e4fcce7692209ce49c Mon Sep 17 00:00:00 2001 From: Xjph Date: Tue, 8 Jun 2021 19:26:55 -0230 Subject: [PATCH] Don't throw exception when journal path doesn't exist. --- ObservatoryCore/LogMonitor.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ObservatoryCore/LogMonitor.cs b/ObservatoryCore/LogMonitor.cs index 8503437..74946be 100644 --- a/ObservatoryCore/LogMonitor.cs +++ b/ObservatoryCore/LogMonitor.cs @@ -202,7 +202,9 @@ namespace Observatory } else { - throw new DirectoryNotFoundException($"Directory '{path}' does not exist."); + //throw new DirectoryNotFoundException($"Directory '{path}' does not exist."); + //Don't throw, not handling that right now. Just set to current folder. + logDirectory = new DirectoryInfo("."); } } else if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))