refactor(logging): replace remaining console.* with logger.debug/error across app, view-models, api-client, and framework
This commit is contained in:
@@ -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 } = {}) {
|
||||
|
||||
Reference in New Issue
Block a user