We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3879639 commit a6968e0Copy full SHA for a6968e0
src/arduino/arduino.ts
@@ -181,7 +181,8 @@ export class ArduinoApp {
181
return;
182
}
183
184
- if (VscodeSettings.getInstance().logLevel === "verbose") {
+ const verbose = VscodeSettings.getInstance().logLevel === "verbose";
185
+ if (verbose) {
186
args.push("--verbose");
187
188
if (dc.output && compile) {
@@ -252,7 +253,8 @@ export class ArduinoApp {
252
253
254
255
args.push(appPath);
256
257
258
259
260
if (output || dc.output) {
0 commit comments