diff --git a/server/monitor-types/mysql.js b/server/monitor-types/mysql.js index 5910227d3..c08f30403 100644 --- a/server/monitor-types/mysql.js +++ b/server/monitor-types/mysql.js @@ -42,7 +42,7 @@ class MysqlMonitorType extends MonitorType { const conditionsResult = evaluateExpressionGroup(conditions, { result: String(result) }); if (!conditionsResult) { - throw new Error(`Query result did not meet the specified conditions (${result})`); + throw new Error(`Query result (${result}) did not meet the specified conditions`); } heartbeat.status = UP;