diff --git a/lib/workers/branch/check-existing.js b/lib/workers/branch/check-existing.js
index 33fc0bac3e956b54a791fe516bd1b5a6dee27913..3ab995ef649c7fc4fd31714d1a05ee9f23b9eb6b 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)