Skip to content

Commit

Permalink
Log exec error on debug level (renovatebot#10341)
Browse files Browse the repository at this point in the history
  • Loading branch information
geraintwhite authored Jun 7, 2021
1 parent 22d82d9 commit bab9b36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/exec/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export async function exec(
try {
res = await rawExec(rawExecCommand, rawExecOptions);
} catch (err) {
logger.trace({ err }, 'rawExec err');
logger.debug({ err }, 'rawExec err');
if (useDocker) {
await removeDockerContainer(docker.image, dockerChildPrefix).catch(
(removeErr: Error) => {
Expand Down

0 comments on commit bab9b36

Please sign in to comment.