We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a172207 commit 8b07660Copy full SHA for 8b07660
src/node/cli.ts
@@ -348,7 +348,9 @@ export async function readConfigFile(configPath?: string): Promise<Args> {
348
logger.info(`Wrote default config file to ${humanPath(configPath)}`)
349
}
350
351
- logger.info(`Using config file ${humanPath(configPath)}`)
+ if (!process.env.CODE_SERVER_PARENT_PID) {
352
+ logger.info(`Using config file ${humanPath(configPath)}`)
353
+ }
354
355
const configFile = await fs.readFile(configPath)
356
const config = yaml.safeLoad(configFile.toString(), {
0 commit comments