UPDATEClient app updated to version
0.7.1(The update will occur automatically if you have not disabled the auto-update feature)Now you can enable logging and record different parameters and events to a log-file on disk.
In particular, all the data sent by the rig to the server containing information about rig state, gpu etc. are logged.
The log file is saved in the same folder.
Logging is disabled by default. If you need it you must turn on it manually.
To enable log, you need to put
-Log 1 into
start_client.bat batch file. (on the last line where the powershell script starting).
So batch file will look like this:
@echo off
cls
echo. & echo RIG cards
echo https://rig.cards
echo. & echo Take short pause before start... & echo.
timeout /t 30
cd /d %~dp0
powershell -ExecutionPolicy Bypass -File rigcards.ps1 -Verb RunAs -Log 1
or, it can also be activated by editing the
config.json configuration file, adding the parameter
"log": 1{
"rig_id": 00000,
"user_id": 0000,
"url": "https://rig.cards",
"secret_key": "yoursecretkeyhere",
"log": 1
}
Don't forget comma at the end of the previous line!