Skip to content

Commit

Permalink
e
Browse files Browse the repository at this point in the history
  • Loading branch information
YuCat-OVO committed Mar 18, 2024
1 parent 88b65f0 commit d7ce623
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/GameManagement/GameManagementPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ private List<Game> UninstallGames(GameMenuItemActionArgs args)
_logger.LogDebug("Removing {Directory}", gameInstallDirectory);
Directory.Delete(gameInstallDirectory, true);
}
catch (IOException)
catch (IOException e)
{
_logger.LogError("The directory {Directory} could not be deleted.", gameInstallDirectory);
_logger.LogError("The directory {Directory} could not be deleted, because {e}.", gameInstallDirectory, e);
}
game.IsInstalled = false;
actuallyUninstalledGames.Add(game);
Expand Down

0 comments on commit d7ce623

Please sign in to comment.