style(editor-app): 移除log信息

This commit is contained in:
yhh
2025-11-20 09:51:29 +08:00
parent 0d2948e60c
commit 8b9616837d
15 changed files with 4 additions and 164 deletions

View File

@@ -9,12 +9,10 @@ export class CompilerRegistry implements IService {
console.warn(`Compiler with id "${compiler.id}" is already registered. Overwriting.`);
}
this.compilers.set(compiler.id, compiler);
console.log(`[CompilerRegistry] Registered compiler: ${compiler.name} (${compiler.id})`);
}
unregister(compilerId: string): void {
this.compilers.delete(compilerId);
console.log(`[CompilerRegistry] Unregistered compiler: ${compilerId}`);
}
get(compilerId: string): ICompiler | undefined {