From 86c7b9338653fb7afcfd68ef172084ccf03f6641 Mon Sep 17 00:00:00 2001 From: Grzegorz Leoniec Date: Wed, 9 Jan 2019 13:14:18 +0100 Subject: [PATCH] Removed unneeded log --- src/graphql-schema.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/graphql-schema.js b/src/graphql-schema.js index 33fc8b4c1..95a62cb99 100644 --- a/src/graphql-schema.js +++ b/src/graphql-schema.js @@ -102,7 +102,6 @@ export const resolvers = { .then(async (result) => { session.close() const [currentUser] = await result.records.map(function (record) { - // console.log(record.get('user')) return record.get('user') }) if (currentUser && await bcrypt.compareSync(password, currentUser.password)) {