Hi, All!
To compile arduino sketch using cli, I create bat file (real path cutted)
\arduino-cli.exe compile -b arduino:sam:arduino_due_x --libraries ...\libraries --warnings default --log-level trace --log-file ...\CompileMsg.log \mysketch.ino >...\CompileMsg.txt
It works, but I can't catch sketch compile error message to file
In log file CompileMsg.log I see this strings
time="2021-05-18T16:39:14+03:00" level=info msg="Config file not found, using default values"
(etc)
In CompileMsg.txt
"Sketch uses 44752 bytes (8%) of program storage space. Maximum is 524288 bytes."
But if sketch has errors - message printed in console.
Blink:33:3: error: 'digitalW' was not declared in this scope
digitalW rite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
^~~~~~~~
How can I redirect output from console to log file?