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 3eca897 commit 8dcd8f4Copy full SHA for 8dcd8f4
src/main/java/io/tpd/quboo/sonarplugin/hooks/QubooConnector.java
@@ -138,7 +138,7 @@ private IssuesWrapper getIssues(final String token) {
138
break;
139
}
140
} catch (final Exception e) {
141
- log.error("Quboo could not fetch issues from the server: " + e.getMessage());
+ log.error("Quboo could not fetch issues from the server: " + e.getMessage(), e);
142
143
144
@@ -194,7 +194,7 @@ private UsersWrapper getUsers(final String token) {
194
195
196
197
- log.error("Quboo could not fetch users from the server: " + e.getMessage());
+ log.error("Quboo could not fetch users from the server: " + e.getMessage(), e);
198
199
200
0 commit comments