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:
parent
2bc47a8647
commit
ce250e4f84
@ -202,7 +202,9 @@ namespace Observatory
|
|||||||
}
|
}
|
||||||
else
|
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))
|
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user