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 8f6fa62 commit 7a7c0fdCopy full SHA for 7a7c0fd
plugins/scanners/fossid/src/main/kotlin/FossId.kt
@@ -247,7 +247,11 @@ class FossId internal constructor(
247
null
248
}
249
250
- else -> throw IOException("Could not get project. Additional information : $error")
+ else -> {
251
+ val errorMessage = "Could not get project '$projectCode' for user '${config.user.value}: $error'"
252
+ logger.error(errorMessage)
253
+ throw IOException(errorMessage)
254
+ }
255
256
257
0 commit comments