From ca8988bfa60aaa402b76b0343827f12e86aa1673 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Fri, 6 Oct 2023 22:24:17 +0200 Subject: [PATCH] chore(GitLabLicenseModelMapper): Slightly improve a log message Signed-off-by: Sebastian Schuberth --- .../gitlab/src/main/kotlin/GitLabLicenseModelMapper.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/reporters/gitlab/src/main/kotlin/GitLabLicenseModelMapper.kt b/plugins/reporters/gitlab/src/main/kotlin/GitLabLicenseModelMapper.kt index a6434c029f65a..b4887adab0192 100644 --- a/plugins/reporters/gitlab/src/main/kotlin/GitLabLicenseModelMapper.kt +++ b/plugins/reporters/gitlab/src/main/kotlin/GitLabLicenseModelMapper.kt @@ -120,6 +120,6 @@ private fun Identifier.toPackageManagerName(): String = "PIP" -> "pip" "Yarn" -> "yarn" else -> type.lowercase().also { - logger.info { "No mapping defined for package manager '$type', guessing '$it'." } + logger.info { "No GitLab mapping defined for package manager '$type', guessing '$it'." } } }