diff --git a/docs/development/configuration.md b/docs/development/configuration.md index 8f50e1ba6a0f77cc8645e7f4f03c6b042d8e4907..549c44712c0c32b9c0e5cdad16039a0766ac603b 100644 --- a/docs/development/configuration.md +++ b/docs/development/configuration.md @@ -38,7 +38,6 @@ e.g. apply one set of labels for `backend/package.json` and a different set of l module.exports = { npmrc: '//registry.npmjs.org/:_authToken=abc123', baseDir: '/tmp/renovate', - logLevel: 'debug', includeForks: true, gradle: { enabled: false }, }; @@ -53,6 +52,8 @@ $ node renovate --help To configure any `<list>` items, separate with commas. E.g. `renovate --labels=renovate,dependency`. +To enable debug logging export `LOG_LEVEL=debug` to your environment. + ### renovate.json If you add a `renovate.json` file to the root of your repository, you can use this to override default settings. diff --git a/docs/usage/self-hosted-configuration.md b/docs/usage/self-hosted-configuration.md index 2ccacf6d5f0aa0b8caa76ae16e96b2b64a3a6c4e..30876451ee685191f058978280c7e0f27f0ef5bf 100644 --- a/docs/usage/self-hosted-configuration.md +++ b/docs/usage/self-hosted-configuration.md @@ -172,6 +172,8 @@ By configuring using the environment it means that debug logging starts from the Additionally, if you configure `LOG_FORMAT=json` in env then logging will be done in JSON format instead of "pretty" format, which is usually better if you're doing any ingestion or parsing of the logs. +Warning: Configuring `logLevel` config option or `--log-level` cli option is deprecated and will be removed in a major version. + ## onboarding Set this to `false` if (a) you configure Renovate entirely on the bot side (i.e. empty `renovate.json` in repositories) and (b) you wish to run Renovate on every repository the bot has access to, and (c) you wish to skip the onboarding PRs. diff --git a/docs/usage/self-hosting.md b/docs/usage/self-hosting.md index 82c9cd183ee8be6df65eb5eeb3de11e95add8c6b..76218dd17c5e53f0fc91077c7a2ea997d84f1950 100644 --- a/docs/usage/self-hosting.md +++ b/docs/usage/self-hosting.md @@ -101,7 +101,6 @@ metadata: data: config.json: |- { - "logLevel" : "debug", "repositories": ["orgname/repo","username/repo"], "dryRun" : "true" } @@ -280,7 +279,6 @@ module.exports = { endpoint: 'https://self-hosted.gitlab/api/v4/', token: '**gitlab_token**', platform: 'gitlab', - logLevel: 'debug', onboardingConfig: { extends: ['config:base'], }, diff --git a/lib/config/config/__fixtures__/file.js b/lib/config/config/__fixtures__/file.js index 61600196f14b7dadadcb0e14d6a24997d2034873..e4fe0d85493f41a7ef99333cb3abd314afcdce0c 100644 --- a/lib/config/config/__fixtures__/file.js +++ b/lib/config/config/__fixtures__/file.js @@ -1,5 +1,4 @@ // @ts-ignore module.exports = { token: 'abcdefg', - logLevel: 'error' }; diff --git a/lib/config/config/__fixtures__/with-force.js b/lib/config/config/__fixtures__/with-force.js index d16cae37e4528499ac862d0c6d97efc6357ca623..ad2b1074fb23d41ba8dbf752c9b744fce8ef998b 100644 --- a/lib/config/config/__fixtures__/with-force.js +++ b/lib/config/config/__fixtures__/with-force.js @@ -1,7 +1,6 @@ // @ts-ignore module.exports = { token: 'abcdefg', - logLevel: 'error', force: { schedule: null, } diff --git a/lib/config/definitions.ts b/lib/config/definitions.ts index b53af3cd45e5477fe62c24bcfdd01d1864b2cbc0..deb1c21d4c7f5c3fed7045a5e6c71425d442d36b 100644 --- a/lib/config/definitions.ts +++ b/lib/config/definitions.ts @@ -350,12 +350,10 @@ const options: RenovateOptions[] = [ // Log options { name: 'logLevel', - description: 'Logging level', + description: 'Logging level. Deprecated, use `LOG_LEVEL` environment.', stage: 'global', type: 'string', allowedValues: ['fatal', 'error', 'warn', 'info', 'debug', 'trace'], - default: 'info', - env: 'LOG_LEVEL', }, { name: 'logFile', diff --git a/lib/config/file.spec.ts b/lib/config/file.spec.ts index 4eeed34655d5fd120941dc175a052d940339275e..f5eb41da982383baf8a37ed2d994449ce0632754 100644 --- a/lib/config/file.spec.ts +++ b/lib/config/file.spec.ts @@ -37,7 +37,6 @@ describe('config/file', () => { "platform": "github", "token":"abcdef", "logFileLevel": "warn", - "logLevel": "info", "onboarding": false, "gitAuthor": "Renovate Bot <renovate@whitesourcesoftware.com>" "onboardingConfig": { diff --git a/lib/config/index.ts b/lib/config/index.ts index 0f4699091c0fa9fec3d5648c61d265abc84effea..8c8eae307a8082af6c4668a2a7ced53b3df74fe3 100644 --- a/lib/config/index.ts +++ b/lib/config/index.ts @@ -80,8 +80,14 @@ export async function parseConfigs( delete config.privateKeyPath; } - // Set log level - levels('stdout', config.logLevel); + // Deprecated set log level: https://github.com/renovatebot/renovate/issues/8291 + // istanbul ignore if + if (config.logLevel) { + logger.warn( + 'Configuring logLevel in CLI or file is deprecated. Use LOG_LEVEL environment variable instead' + ); + levels('stdout', config.logLevel); + } if (config.logContext) { // This only has an effect if logContext was defined via file or CLI, otherwise it would already have been detected in env