diff --git a/gateway.go b/gateway.go index dea1daf..a6f957b 100644 --- a/gateway.go +++ b/gateway.go @@ -218,11 +218,11 @@ func (ws *socketConn) handleStatus(updates Packet) { if value == 0 { if _, err := dbConn.Exec("DELETE FROM `sd5-state`.? WHERE gen_id = ? AND status_code = '?'", table, generatorId, statusCode); err != nil { - fmt.Printf("Error removing status/fault") + fmt.Printf("Error removing status/fault: %v\n", err) } } else { if _, err := dbConn.Exec("INSERT INTO `sd5-state`.? (gen_id, status_code) VALUES (?, '?') ON DUPLICATE KEY UPDATE gen_id = VALUES(gen_id), status_code = VALUES(status_code)", table, generatorId, statusCode); err != nil { - fmt.Printf("Error setting status/fault") + fmt.Printf("Error setting status/fault: %v\n", err) } }