Use warning flag when logging some caught exceptions

This commit is contained in:
Travis Nickles 2020-03-25 18:12:03 -05:00
parent b5c46b1fb3
commit 0717ba1212

View File

@ -630,8 +630,8 @@ namespace DS4Windows
}
catch (Exception e)
{
LogDebug(e.Message);
AppLogger.LogToTray(e.Message);
LogDebug(e.Message, true);
AppLogger.LogToTray(e.Message, true);
}
running = true;