Skip to content

Commit

Permalink
added error message to failed commits
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnstonCode committed Nov 28, 2017
1 parent 746f6ce commit 6c4c674
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# **v1.2.1**

## Bug Fixes

* Added better error logging for failed commits

# **v1.2.0**

## What's New
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "svn-scm",
"displayName": "SVN",
"description": "Integrated Subversion source control",
"version": "1.2.0",
"version": "1.2.1",
"publisher": "johnstoncode",
"engines": {
"vscode": "^1.17.0"
Expand Down
3 changes: 2 additions & 1 deletion src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@ export class SvnCommands {
changesCommitted();
repository.update();
} catch (error) {
window.showErrorMessage("Unable to commit");
console.error(error);
window.showErrorMessage(error);
}
}

Expand Down

0 comments on commit 6c4c674

Please sign in to comment.