We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d3246f2 + e9c0daf commit 1aca2cfCopy full SHA for 1aca2cf
1 file changed
core/src/main/scala/com/codacy/analysis/core/tools/Tool.scala
@@ -168,8 +168,8 @@ class ToolCollector(toolRepository: ToolRepository) {
168
val toolsIdentified: Set[Tool] = tools.map { tool =>
169
if (toolUuids.contains(tool.uuid)) {
170
from(tool, languages) match {
171
- case Left(_) =>
172
- logger.warn(s"Failed to get tool for uuid:${tool.uuid}")
+ case Left(error) =>
+ logger.warn(s"Failed to get tool for ${tool.name}.\nReason: ${error.message}")
173
Set.empty
174
case Right(tools) => tools
175
}
0 commit comments