Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔊 Add error for failure to open GitHub Desktop to logs
Browse files Browse the repository at this point in the history
Lamparter committed Aug 29, 2024
1 parent 3134e85 commit 1bf138c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/FluentHub.App/UserControls/GitCloneFlyout.xaml.cs
Original file line number Diff line number Diff line change
@@ -150,6 +150,10 @@ private async void GitHubDeskButton_Click(object sender, RoutedEventArgs e)
{
Log.Write(Serilog.Events.LogEventLevel.Information, "Opened GitHub Desktop with the repository");
}
else
{
Log.Error($"Cannot open GitHub Desktop with uri \"" + openGitHubDesktopUrl + "\"");
}
}

private void CopyGitCommand_Click(object sender, RoutedEventArgs e)

0 comments on commit 1bf138c

Please sign in to comment.