Post
Topic
Board Mining (Altcoins)
Re: Optiminer/Zcash v1.3.0 (GPU, Linux, AMD)
by
Za1n
on 15/01/2017, 18:10:33 UTC
Hello! When will the new release? In the new release will increase in speed? I really liked your miner is better than the Claymore
100%

where to find the log file?

To generate a log file, launch the miner with
Code:
-l


Bonus answer:

If you want a time-stamped formatted log file kinda like CM, use something like this:

Code:
-l %DATE:~-4%-%DATE:~4,2%-%DATE:~7,2%@%TIME:~0,2%-%TIME:~3,2%-%TIME:~6,2%_log.txt

then your log files will appear like:  2017-01-15@12-41-58_log.txt  in a YYYY, MM, DD @ HH, MM, SS format.


I like to keep the formatting of the example batch file, so I assign the log file to a variable earlier on:

Code:
SET LOGFILE=%DATE:~-4%-%DATE:~4,2%-%DATE:~7,2%@%TIME:~0,2%-%TIME:~3,2%-%TIME:~6,2%_log.txt

this way I can keep the actual launch command line easier to read similar to:

Code:
optiminer  -s %POOL% -u %USER% -p %PASSWORD% -l %LOGFILE%