Skip to content

Commit f02c6e4

Browse files
committed
remove log
1 parent d6d3b7a commit f02c6e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/linter-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default class FortranLintingProvider {
1818
private diagnosticCollection: vscode.DiagnosticCollection;
1919
private doModernFortranLint(textDocument: vscode.TextDocument) {
2020
let errorRegex:RegExp = /^([^:]*):([0-9]+):([0-9]+):\n\s(.*)\n.*\n(Error|Warning|Fatal Error):\s(.*)$/gm;
21-
console.log(textDocument.languageId);
21+
2222
if (textDocument.languageId !== 'fortran90') {
2323
return;
2424
}

0 commit comments

Comments
 (0)