From cf08362a3604dc25e52adb4086d381f75181e7a4 Mon Sep 17 00:00:00 2001 From: Ro Date: Thu, 25 Jun 2020 15:28:35 -0700 Subject: [PATCH] cleaned up console logs --- brain/data/Utils.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/brain/data/Utils.js b/brain/data/Utils.js index 74372c8..dbd1093 100644 --- a/brain/data/Utils.js +++ b/brain/data/Utils.js @@ -38,11 +38,11 @@ export default class Utils { settings.saveTags(tags).then(() => { render .publishTags(pages) - .then(response => { - console.log(response); + .then(() => { + //console.log(response); }) - .catch(err => { - console.log(err); + .catch(() => { + //console.log(err); }); }); }