We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2d7486e + aab4a92 commit 35e58c0Copy full SHA for 35e58c0
1 file changed
packages/backend/src/zoekt.ts
@@ -84,7 +84,9 @@ export const indexGitRepository = async (repo: Repo, settings: Settings, ctx: Ap
84
}
85
if (stderr) {
86
stderr.split('\n').filter(line => line.trim()).forEach(line => {
87
- logger.error(line);
+ // TODO: logging as regular info here and not error because non error logs are being
88
+ // streamed in stderr and incorrectly being logged as errors at a high level
89
+ logger.info(line);
90
});
91
92
0 commit comments