Hello,
did someone succeeded to enable the log function?
I am using cast XMR 0.8.5, I put "--log log.txt" in the command line, but it never makes a log text file...
did someone succeeded to enable the log function?
I am using cast XMR 0.8.5, I put "--log log.txt" in the command line, but it never makes a log text file...
i have the same problem can not set it up, which is really wierd
It works for me.
It creates the log file in the current directory, so if you run cast_xmr-vega.exe by some script/shortcut that have set working directory different from the cast_xmr-vega folder, then it will be created there. try to specify full log path.
For anyone interested to create a log file with current date/time in filename, here is the script to do this:
Code:
for /F "usebackq tokens=1,2 delims==" %%i in (`wmic os get LocalDateTime /VALUE 2^>NUL`) do if '.%%i.'=='.LocalDateTime.' set ldt=%%j
set ldt=%ldt:~0,8%_%ldt:~8,6%
cast_xmr-vega --log log%ldt%.txt ...
so the log file will have the name like this: log20180222_092247.txt