Remove DEBUG console.log statements across codebase

- Eliminated all debugging console statements from 7 files (194 deletions)
- Fixed parsing errors from broken function calls in databaseUtil.ts
- Resolved orphaned console.log parameters in util.ts and ImportAccountView.vue
- Maintained legitimate logging in PlatformServiceFactory and registerServiceWorker
- Reduced lint issues from 33 problems (11 errors + 22 warnings) to 16 warnings
- All builds and core functionality verified working
This commit is contained in:
Matthew Raymer
2025-07-08 09:39:05 +00:00
parent 87adcf5cd4
commit 89001dcd5e
7 changed files with 9 additions and 194 deletions

View File

@@ -330,7 +330,7 @@ const verifyXcodeInstallation = (log) => {
// Generate test data using generate_data.ts
const generateTestData = async (log) => {
log('\n🔍 DEBUG: Starting test data generation...');
log('\n🔍 Starting test data generation...');
// Check directory structure
log('📁 Current directory:', process.cwd());