@@ -27,7 +27,6 @@ const WINDOW_SETTING = `${ARDUINO_SETTING}.window`;
2727// const IDE_SETTING = `${ARDUINO_SETTING}.ide`; 
2828const  COMPILE_SETTING  =  `${ ARDUINO_SETTING }  ; 
2929const  UPLOAD_SETTING  =  `${ ARDUINO_SETTING }  ; 
30- const  LANGUAGE_SETTING  =  `${ ARDUINO_SETTING }  ; 
3130const  SKETCHBOOK_SETTING  =  `${ ARDUINO_SETTING }  ; 
3231const  AUTO_SCALE_SETTING  =  `${ WINDOW_SETTING }  ; 
3332const  ZOOM_LEVEL_SETTING  =  `${ WINDOW_SETTING }  ; 
@@ -36,7 +35,6 @@ const COMPILE_VERBOSE_SETTING = `${COMPILE_SETTING}.verbose`;
3635const  COMPILE_WARNINGS_SETTING  =  `${ COMPILE_SETTING }  ; 
3736const  UPLOAD_VERBOSE_SETTING  =  `${ UPLOAD_SETTING }  ; 
3837const  UPLOAD_VERIFY_SETTING  =  `${ UPLOAD_SETTING }  ; 
39- const  LANGUAGE_LOG_SETTING  =  `${ LANGUAGE_SETTING }  ; 
4038const  SHOW_ALL_FILES_SETTING  =  `${ SKETCHBOOK_SETTING }  ; 
4139
4240export  interface  Settings  extends  Index  { 
@@ -55,7 +53,6 @@ export interface Settings extends Index {
5553  compilerWarnings : CompilerWarnings ;  // `arduino.compile.warnings` 
5654  verboseOnUpload : boolean ;  // `arduino.upload.verbose` 
5755  verifyAfterUpload : boolean ;  // `arduino.upload.verify` 
58-   enableLsLogs : boolean ;  // `arduino.language.log` 
5956  sketchbookShowAllFiles : boolean ;  // `arduino.sketchbook.showAllFiles` 
6057
6158  sketchbookPath : string ;  // CLI 
@@ -118,7 +115,6 @@ export class SettingsService {
118115      compilerWarnings , 
119116      verboseOnUpload , 
120117      verifyAfterUpload , 
121-       enableLsLogs , 
122118      sketchbookShowAllFiles , 
123119      cliConfig , 
124120    ]  =  await  Promise . all ( [ 
@@ -144,7 +140,6 @@ export class SettingsService {
144140      this . preferenceService . get < any > ( COMPILE_WARNINGS_SETTING ,  'None' ) , 
145141      this . preferenceService . get < boolean > ( UPLOAD_VERBOSE_SETTING ,  true ) , 
146142      this . preferenceService . get < boolean > ( UPLOAD_VERIFY_SETTING ,  true ) , 
147-       this . preferenceService . get < boolean > ( LANGUAGE_LOG_SETTING ,  true ) , 
148143      this . preferenceService . get < boolean > ( SHOW_ALL_FILES_SETTING ,  false ) , 
149144      this . configService . getConfiguration ( ) , 
150145    ] ) ; 
@@ -164,7 +159,6 @@ export class SettingsService {
164159      compilerWarnings, 
165160      verboseOnUpload, 
166161      verifyAfterUpload, 
167-       enableLsLogs, 
168162      sketchbookShowAllFiles, 
169163      additionalUrls, 
170164      sketchbookPath, 
@@ -245,7 +239,6 @@ export class SettingsService {
245239      compilerWarnings, 
246240      verboseOnUpload, 
247241      verifyAfterUpload, 
248-       enableLsLogs, 
249242      sketchbookPath, 
250243      additionalUrls, 
251244      network, 
@@ -312,11 +305,6 @@ export class SettingsService {
312305        verifyAfterUpload , 
313306        PreferenceScope . User 
314307      ) , 
315-       this . preferenceService . set ( 
316-         LANGUAGE_LOG_SETTING , 
317-         enableLsLogs , 
318-         PreferenceScope . User 
319-       ) , 
320308      this . preferenceService . set ( 
321309        SHOW_ALL_FILES_SETTING , 
322310        sketchbookShowAllFiles , 
0 commit comments