diff --git a/agkyra/agkyra/syncer/localfs_client.py b/agkyra/agkyra/syncer/localfs_client.py index dcd8fd0e1df540a23fa24469421588d41b7ec4cc..83795505583e3cd90b37c3f57f51d9fec6c8e430 100644 --- a/agkyra/agkyra/syncer/localfs_client.py +++ b/agkyra/agkyra/syncer/localfs_client.py @@ -300,7 +300,6 @@ class LocalfsTargetHandle(object): def prepare(self, fetched_file, sync_state): self.hide_file() info_changed = local_path_changes(self.hidden_path, sync_state) - print 'info changed', info_changed if info_changed is not None and info_changed != {}: if not files_equal(self.hidden_path, fetched_file): self.stash_file() @@ -453,7 +452,6 @@ class LocalfsSourceHandle(object): staged_path = self.staged_path try: link_file(staged_path, self.fspath) - print "Unlinking", staged_path os.unlink(staged_path) except common.ConflictError: self.stash_staged_file() diff --git a/agkyra/agkyra/syncer/syncer.py b/agkyra/agkyra/syncer/syncer.py index 3491a41bcd179d89d6deeb9893a84e688236f9bd..e19810765ce1b60b9c8f7d6ce38377776e87c70a 100644 --- a/agkyra/agkyra/syncer/syncer.py +++ b/agkyra/agkyra/syncer/syncer.py @@ -71,7 +71,7 @@ class FileSyncer(object): self.notifiers[signature] = \ client.notifier(callback=self.probe_file) else: - print 'ignoring %s' % signature + logger.info("Notifier %s already up" % signature) def stop_notifiers(self): for notifier in self.notifiers.values():