fix: Logs format (#17156)

This commit is contained in:
Mykola Mokhnach
2022-07-08 18:56:17 +02:00
committed by GitHub
parent 9e6a7af95b
commit dbc4544b72
+1 -1
View File
@@ -538,7 +538,7 @@ const getExecutablePath = _.memoize(
*/
async function getExecutablePath(binaryName) {
const fullPath = await fs.which(binaryName);
log.debug(`Found '%s' at '%s'`, binaryName, fullPath);
log.debug(`Found '${binaryName}' at '${fullPath}'`);
return fullPath;
}
);