diff --git a/server/src/watchdog.js b/server/src/watchdog.js index 3dc818662f..c598483845 100644 --- a/server/src/watchdog.js +++ b/server/src/watchdog.js @@ -240,10 +240,12 @@ exports.handleResult = function(req) { }; function handleNegative(record) { + mozlog.debug("watchdog-negative-match", {msg: `Watchdog submission ${record.id} is a negative match.`}); return db.update("UPDATE watchdog_submissions SET positive_result = FALSE WHERE id = $1", [record.id]); } function handlePositive(record) { + mozlog.warn("watchdog-positive-match", {msg: `Watchdog submission ${record.id} is a positive match.`}); return db.transaction(client => { return db.queryWithClient( client,