There was an error while loading. Please reload this page.
1 parent c64966f commit 40f8297Copy full SHA for 40f8297
1 file changed
packages/language-server-ruby/src/formatters/BaseFormatter.ts
@@ -73,12 +73,10 @@ export default abstract class BaseFormatter implements IFormatter {
73
stdin: of(this.originalText),
74
}).pipe(
75
catchError(error => {
76
- console.log(error);
77
const err: Error | null = this.processError(error, formatStr);
78
return err ? throwError(err) : of('');
79
}),
80
reduce((acc: string, value: any) => {
81
- console.log(value);
82
if (value.source === 'stdout') {
83
return `${acc}${value.text}`;
84
} else {
0 commit comments