@fullzero
please help me, howto log ethminer console on a log file
Find ethminer line in 3main and add this to the end of it
2>&1 | tee your_log-file_name.log
like this :
screen -dmS miner $HCD -S $UBQ_POOL -O $UBQADDR:x -U 2>&1 | tee your_log-file_name.log
I tried but the log file was empty
My guess is you will most likely need to redirect the screen to a log and not ethminer; but I haven't tried it.
What do I need to do? I will try
Try adding a "L" to the screen args like this:
screen -dmSL miner $HCD -S $UBQ_POOL -O $UBQADDR:x -U 2>&1 | tee your_log-file_name.log
That's what a I do. Then a file called "screenlog.0" will be created. Keep in main that this file grows constantly, so eventually you will have to do some thing about it.
To watch the output in real time: tail -f /path to screenlog.0