refactor(logging): replace remaining console.* with logger.debug/error across app, view-models, api-client, and framework

This commit is contained in:
2025-08-31 12:18:15 +02:00
parent 4ee209ef78
commit 9dab498aa2
4 changed files with 34 additions and 34 deletions

View File

@@ -15,7 +15,7 @@ class ApiClient {
this.baseUrl = `http://${currentHost}:3001`;
}
console.log('API Client initialized with base URL:', this.baseUrl);
logger.debug('API Client initialized with base URL:', this.baseUrl);
}
async request(path, { method = 'GET', headers = {}, body = undefined, query = undefined, isForm = false } = {}) {