File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
server/src/main/java/org/eclipse/openvsx Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1251,7 +1251,7 @@ public ResponseEntity<ExtensionJson> publish(
12511251 .location (URI .create (url ))
12521252 .body (json );
12531253 } catch (ErrorResultException exc ) {
1254- logger .warn ("Failed to publish extension" , exc );
1254+ logger .warn ("Failed to publish extension: {} " , exc . getMessage () );
12551255 return exc .toResponseEntity (ExtensionJson .class );
12561256 }
12571257 }
@@ -1304,7 +1304,7 @@ public ResponseEntity<ExtensionJson> publish(InputStream content) {
13041304 .location (URI .create (url ))
13051305 .body (json );
13061306 } catch (ErrorResultException exc ) {
1307- logger .warn ("Failed to publish extension" , exc );
1307+ logger .warn ("Failed to publish extension: {} " , exc . getMessage () );
13081308 return exc .toResponseEntity (ExtensionJson .class );
13091309 }
13101310 }
You can’t perform that action at this time.
0 commit comments