We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 746f6ce commit 6c4c674Copy full SHA for 6c4c674
CHANGELOG.md
@@ -1,3 +1,9 @@
1
+# **v1.2.1**
2
+
3
+## Bug Fixes
4
5
+* Added better error logging for failed commits
6
7
# **v1.2.0**
8
9
## What's New
package.json
@@ -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"
src/commands.ts
@@ -186,7 +186,8 @@ export class SvnCommands {
186
changesCommitted();
187
repository.update();
188
} catch (error) {
189
- window.showErrorMessage("Unable to commit");
+ console.error(error);
190
+ window.showErrorMessage(error);
191
}
192
193
0 commit comments