Fix log statement

This commit is contained in:
AsamK 2023-09-30 22:32:45 +02:00
parent 735766669e
commit 6f63346905

View file

@ -36,7 +36,7 @@ class CheckLibVersionsPlugin : Plugin<Project> {
println("UPGRADE {\"group\": \"$group\", \"name\": \"$name\", \"current\": \"$version\", \"latest\": \"$newest\"}")
}
} catch (e: Throwable) {
logger.debug("Unable to download or parse $metaDataUrl: $e.message")
logger.debug("Unable to download or parse {}: {}", metaDataUrl, e.message)
}
}
}