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

Don't throw exception when journal path doesn't exist.

This commit is contained in:
Xjph 2021-06-08 19:26:55 -02:30
parent 2bc47a8647
commit ce250e4f84

View File

@ -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))