Added status icons and better connection handling

This commit is contained in:
szporowolik
2019-10-19 23:00:54 +02:00
parent 48f60abbfa
commit 2f7d2d07bb
14 changed files with 224 additions and 152 deletions

View File

@@ -26,7 +26,14 @@ class LogController
}
else
{
fileStream = new FileStream(logFilePath, FileMode.Append);
try
{
fileStream = new FileStream(logFilePath, FileMode.Append);
}
catch
{
}
}
log = new StreamWriter(fileStream);
log.WriteLine(strLog);