@@ -341,15 +341,12 @@ export class FortranLintingProvider {
341
341
// Discard the previous diagnostic state for this document
342
342
if ( this . fortranDiagnostics . has ( document . uri ) ) this . fortranDiagnostics . delete ( document . uri ) ;
343
343
this . logger . debug ( '[lint] No linting diagnostics to show' ) ;
344
- console . log ( '[lint] No linting diagnostics to show' ) ;
345
344
return ;
346
345
}
347
346
let diagnostics : vscode . Diagnostic [ ] = this . linter . parse ( output ) ;
348
- console . log ( '[lint] Parsing output to vscode.Diagnostics' , diagnostics ) ;
349
347
this . logger . debug ( '[lint] Parsing output to vscode.Diagnostics' , diagnostics ) ;
350
348
// Remove duplicates from the diagnostics array
351
349
diagnostics = [ ...new Map ( diagnostics . map ( v => [ JSON . stringify ( v ) , v ] ) ) . values ( ) ] ;
352
- console . log ( '[lint] Removing duplicates. vscode.Diagnostics are now:' , diagnostics ) ;
353
350
this . logger . debug ( '[lint] Removing duplicates. vscode.Diagnostics are now:' , diagnostics ) ;
354
351
this . fortranDiagnostics . set ( document . uri , diagnostics ) ;
355
352
return diagnostics ;
@@ -380,8 +377,6 @@ export class FortranLintingProvider {
380
377
`[build.single] compiler: "${ this . settings . compiler } " located in: "${ command } "`
381
378
) ;
382
379
this . logger . info ( `[build.single] Compiler query command line: ${ command } ${ argList . join ( ' ' ) } ` ) ;
383
- console . log ( `[build.single] compiler: "${ this . settings . compiler } " located in: "${ command } "` ) ;
384
- console . log ( `[build.single] Compiler query command line: ${ command } ${ argList . join ( ' ' ) } ` ) ;
385
380
386
381
try {
387
382
const fypp = await this . getFyppProcess ( document ) ;
@@ -397,7 +392,6 @@ export class FortranLintingProvider {
397
392
) ;
398
393
const output : string = stdout + stderr ;
399
394
this . logger . debug ( `[build.single] Compiler output:\n${ output } ` ) ;
400
- console . log ( `[build.single] Compiler output:\n${ output } ` ) ;
401
395
return output ;
402
396
} catch ( err ) {
403
397
this . logger . error ( `[build.single] Compiler error:` , err ) ;
0 commit comments