agentsqripts
Version:
Comprehensive static code analysis toolkit for identifying technical debt, security vulnerabilities, performance issues, and code quality problems
15 lines (13 loc) • 420 B
JavaScript
/**
* @file Log analysis start message
* @description Single responsibility: Display analysis startup information
*/
/**
* Log analysis start message
* @param {string} analysisType - Type of analysis
* @param {string} targetPath - Path being analyzed
*/
function logAnalysisStart(analysisType, targetPath) {
console.log(`🔍 ${analysisType} analysis for: ${targetPath}`);
}
module.exports = logAnalysisStart;