diff --git a/tupak/sampler.py b/tupak/sampler.py
index 9a9b0fef51429a61d6d2639792d0a06bd4a83ef4..c9f028c86c275fcacfb529520f0c5d05b35316b5 100644
--- a/tupak/sampler.py
+++ b/tupak/sampler.py
@@ -206,8 +206,9 @@ class Sampler(object):
                 self.cached_result = None
 
     def log_summary_for_sampler(self):
-        logging.info("Using sampler {} with kwargs {}".format(
-            self.__class__.__name__, self.kwargs))
+        if self.cached_result is False:
+            logging.info("Using sampler {} with kwargs {}".format(
+                self.__class__.__name__, self.kwargs))
 
 
 class Nestle(Sampler):