How lprun output append at the end of exist log file and limit file size?
How lprun output append at the end of exist log file and limit file size?
e.g:here's a test.linq like :C# Console.WrtieLine("Hello World");
and I use cli: lprun -format=text "test.linq" > output.log
, every time it will refresh output.log, and I'd like output append at the end of it.
Comments
Windows supports the >> operator to append instead of replacing:
There's no option to limit file size AFAIK.
@JoeAlbahari Thanks!!