summaryrefslogtreecommitdiffstats
path: root/backend/src/index.js
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-02-13 13:19:23 -0500
committerWes Bos <wesbos@gmail.com>2018-02-13 13:19:23 -0500
commitfa3ec3299b3fa33e5a699683beb96cfa4e6dd51d (patch)
tree601b4ff9650cd17a6d4181fc5982b401411d2a6a /backend/src/index.js
parente0d0baa75ec0bf617f91b6cd779305d4009cae12 (diff)
getting there
Diffstat (limited to 'backend/src/index.js')
-rw-r--r--backend/src/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/src/index.js b/backend/src/index.js
index 359456f..22cc9ef 100644
--- a/backend/src/index.js
+++ b/backend/src/index.js
@@ -19,7 +19,7 @@ const server = new GraphQLServer({
typeDefs: 'src/generated/prisma.graphql',
endpoint: process.env.PRISMA_ENDPOINT, // the endpoint of the Prisma DB service (value is set in .env)
secret: process.env.PRISMA_SECRET, // taken from database/prisma.yml (value is set in .env)
- debug: true, // log all GraphQL queries & mutations
+ debug: false, // log all GraphQL queries & mutations
}),
}),
});