How to debug lf? #1496
How to debug lf?
#1496
-
I want to see the log outputs of my custom scripts but I can't find any mentions on how to debug |
Beta Was this translation helpful? Give feedback.
Answered by
joelim-work
Nov 14, 2023
Replies: 1 comment
-
Use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
samsze0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use
-log
option when runninglf
, for examplelf -log /path/to/logfile
. If you want to test shell scripts, then you will have to explicitly write to the log file, likeecho test >> /path/to/logfile
.