You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2018/09/12 12:29:42 UTC

[camel] branch master updated: Removed useless logging added for testing

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new e852f68  Removed useless logging added for testing
e852f68 is described below

commit e852f68262274d30cc9b734de0296f848c02fb48
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Sep 12 14:29:15 2018 +0200

    Removed useless logging added for testing
---
 .../component/google/calendar/stream/GoogleCalendarStreamConsumer.java  | 2 --
 1 file changed, 2 deletions(-)

diff --git a/components/camel-google-calendar/src/main/java/org/apache/camel/component/google/calendar/stream/GoogleCalendarStreamConsumer.java b/components/camel-google-calendar/src/main/java/org/apache/camel/component/google/calendar/stream/GoogleCalendarStreamConsumer.java
index eb0b6e4..b2f976e 100644
--- a/components/camel-google-calendar/src/main/java/org/apache/camel/component/google/calendar/stream/GoogleCalendarStreamConsumer.java
+++ b/components/camel-google-calendar/src/main/java/org/apache/camel/component/google/calendar/stream/GoogleCalendarStreamConsumer.java
@@ -65,7 +65,6 @@ public class GoogleCalendarStreamConsumer extends ScheduledBatchPollingConsumer
 
     @Override
     protected int poll() throws Exception {
-        System.err.println("Io pollo");
         com.google.api.services.calendar.Calendar.Events.List request = getClient().events().list(calendarId).setOrderBy("updated");
         if (ObjectHelper.isNotEmpty(getConfiguration().getQuery())) {
             request.setQ(getConfiguration().getQuery());
@@ -125,7 +124,6 @@ public class GoogleCalendarStreamConsumer extends ScheduledBatchPollingConsumer
                 }
             });
         }
-        System.err.println("Io ho pollato");
         return total;
     }