From 5bf7f732044ca7b0ff922cb5594932aa30409bf1 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Fri, 11 Nov 2016 16:20:50 +0100 Subject: [PATCH] Remove stray console.log --- src/errors/check-constraint-violation.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/errors/check-constraint-violation.js b/src/errors/check-constraint-violation.js index 461c65c..560a8fd 100644 --- a/src/errors/check-constraint-violation.js +++ b/src/errors/check-constraint-violation.js @@ -36,7 +36,6 @@ module.exports = { if (columns != null) { /* This is the naming convention that Knex uses for .enum() in PostgreSQL */ offendingColumn = columns.find(column => { - console.log(`${error.table}_${column}_check`) return error.constraint === `${error.table}_${column}_check` });