chore: remove noisy logs

This commit is contained in:
KernelDeimos 2024-10-19 17:31:38 -04:00
parent c29122c23f
commit 0fb4f73d76
2 changed files with 0 additions and 6 deletions

View File

@ -20,15 +20,12 @@ export class FilesystemService extends putility.concepts.Service {
authentication token or API origin is changed.
`,
async do () {
console.log('do() was called');
this.initializeSocket();
}
}
]
_init () {
console.log('does this init get called');
const env = this._.context.env;
if ( env === 'app' ) {
@ -67,7 +64,6 @@ export class FilesystemService extends putility.concepts.Service {
}
initializeSocket () {
console.log('THIS IS RUNNING');
if (this.socket) {
this.socket.disconnect();
}

View File

@ -95,8 +95,6 @@ class ServiceManager extends AdvancedBase {
// yet initialized
const waiting_for = this.get_waiting_for_(depends);
console.log('CHECK --- ', waiting_for, new Error());
// If there's nothing to wait for, remove the listener
// on service initializations and resolve
if ( waiting_for.length === 0 ) {