From c96f24a82cc34d5d88c2a0a3bd498fd90fea9855 Mon Sep 17 00:00:00 2001
From: singapore <singapore@redgc.com>
Date: Mon, 16 Oct 2017 15:22:48 +0200
Subject: [PATCH] chore: remove unnecessary log.info from check-existing

---
 lib/workers/branch/check-existing.js | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/workers/branch/check-existing.js b/lib/workers/branch/check-existing.js
index 33fc0bac3e..3ab995ef64 100644
--- a/lib/workers/branch/check-existing.js
+++ b/lib/workers/branch/check-existing.js
@@ -27,7 +27,6 @@ async function prAlreadyExisted(config) {
       const closedAt = moment(pr.closed_at);
       const problemStart = moment('2017-10-15T20:00:00Z');
       const problemStopped = moment('2017-10-16T06:00:00Z');
-      logger.info({ closedAt, problemStart, problemStopped }, 'times');
       if (
         problemStart.isBefore(closedAt) &&
         closedAt.isBefore(problemStopped)
-- 
GitLab