1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00

Rethrow exception after logging to make tracking on CI easier

This commit is contained in:
Dean Herbert 2021-10-12 11:11:55 +09:00
parent 22e90076fb
commit 1550a3b470

View File

@ -140,6 +140,7 @@ namespace osu.Game.Audio.Effects
catch (Exception e)
{
Logger.Log($"Exception in audio filter disposal: {e}");
throw;
}
}
}