You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently when running ie the log file ie.log is generated always irrespective of end result. This works great while user is adding support for ie in a new document but not that useful if we know the execution will be successful. Perhaps it would make sense to only write ie.log in case the execution fails, or user explicitly requests by a flag like --log-file.
→ ie execute tutorial.md
Welcome to the innovation Engine Tutorial
1. Running simple bash commands
✔ export VAR="Hello World"
✔ echo $VAR
Hello World
2. Test Code block with expected output
✔ echo "Hello \
world"
Hello world
3. Test Code block matches expected regex
✔ echo "Foo Bar"
Foo Bar
→ ls -la | grep ie.log
-rw-rw-r-- 1 qasim qasim 2331 Dez 6 16:16 ie.log
The text was updated successfully, but these errors were encountered:
rgardler-msft
changed the title
Consider generating log file if --log-file flag is specified or on failure
Only generate a log file if specifically requested, in test mode or on a failure
Jan 10, 2025
Currently when running
ie
the log fileie.log
is generated always irrespective of end result. This works great while user is adding support forie
in a new document but not that useful if we know the execution will be successful. Perhaps it would make sense to only writeie.log
in case the execution fails, or user explicitly requests by a flag like--log-file
.The text was updated successfully, but these errors were encountered: