diff --git a/agkyra/agkyra/syncer/syncer.py b/agkyra/agkyra/syncer/syncer.py
index 5e9b8f3d818c508e807a03190a5b9d4699a8e92a..af52f8dce8788c00364057f0218214e831f39a0b 100644
--- a/agkyra/agkyra/syncer/syncer.py
+++ b/agkyra/agkyra/syncer/syncer.py
@@ -11,17 +11,6 @@ from agkyra.syncer.pithos_client import PithosFileClient
 from agkyra.syncer import messaging, utils
 
 logger = logging.getLogger(__name__)
-logging.basicConfig(level=logging.INFO)
-
-
-class IgnoreKamakiInfo(logging.Filter):
-    def filter(self, record):
-        return not (record.name.startswith('kamaki') and
-                    record.levelno <= logging.INFO)
-
-for handler in logging.root.handlers:
-    handler.addFilter(IgnoreKamakiInfo())
-
 
 exclude_regexes = ["\.#", "\.~", "~\$", "~.*\.tmp$", "\..*\.swp$"]
 exclude_pattern = re.compile('|'.join(exclude_regexes))