raphaelthurnherr / algobot_onionOmega

1 stars 0 forks source link

Add details on error event #26

Open YannCaron opened 6 years ago

YannCaron commented 6 years ago

On error event

{
    "MsgTo": "algo",
    "MsgFrom": "algo_973a",
    "MsgID": 0,
    "MsgData": {
        "MsgType": "event",
        "MsgParam": "led",
        "MsgValue": [
            {
                "action": "error"
            }
        ]
    }
}

Please can you add an error message like this :

{
    "MsgTo": "algo",
    "MsgFrom": "algo_973a",
    "MsgID": 0,
    "MsgData": {
        "MsgType": "event",
        "MsgParam": "led",
        "MsgValue": [
            {
                "action": "error",
                "message": "led number 9 does not exists.",
                "details" : {
                    // debug message content
                }
            }
        ]
    }
}