We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bd9c09 commit a23cdceCopy full SHA for a23cdce
src/commands/git/utils.js
@@ -28,7 +28,7 @@ function execGitSync(args, options = {}) {
28
const { stdout, exitCode } = execa.sync('git', args, Object.assign({ stdio: 'ignore', timeout: TIMEOUT }, options));
29
return exitCode === 0 ? (stdout || '').trim() : '';
30
} catch (error) {
31
- logger.warn('execGitSync', error);
+ logger.warn('[execGitSync]', error.message);
32
return '';
33
}
34
0 commit comments