lint: ban console output (#317)

This commit is contained in:
Pavel Feldman 2025-04-30 14:15:32 -07:00 committed by GitHub
parent 685dea9e19
commit 23ce973377
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 18 additions and 11 deletions

View file

@ -41,7 +41,6 @@ program
.option('--config <path>', 'Path to the configuration file.')
.action(async options => {
const config = await resolveConfig(options);
console.error(config);
const serverList = new ServerList(() => createServer(config));
setupExitWatchdog(serverList);