SOLVED I needed to add 2 times Curly brackets on the client side

Before

    local log = {
        ["color"] = color,
        ["title"] = title,
        ["description"] = message
    }

After

    local log = {{
        ["color"] = color,
        ["title"] = title,
        ["description"] = message
    }}