bblanchon / ArduinoTrace

📓 A dead-simple tracing library to debug your Arduino programs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Request NO_PATH option

chrismolloy opened this issue · comments

would like a no path option with just the line number to minimize clutter.

Hi @chrismolloy,

Instead of

MyProgram.ino:7: someValue = 42
MyProgram.ino:11: void loop()
MyProgram.ino:11: void loop()
MyProgram.ino:11: void loop()
...

you want:

7: someValue = 42
11: void loop()
11: void loop()
11: void loop()
...

Is that right?

Best regards,
Benoit