diff --git a/openbis_all/source/python/gather_postgres_stats.py b/openbis_all/source/python/gather_postgres_stats.py
index 5862733e36b22b0fcf7b4ea285113458b57bf8ca..4afd1fff4998ce141d380910808b7578987eea9a 100755
--- a/openbis_all/source/python/gather_postgres_stats.py
+++ b/openbis_all/source/python/gather_postgres_stats.py
@@ -144,7 +144,6 @@ def callCommandLine(args):
   Calls a command line program and returns the standard out
   '''
   SplitArgs = shlex.split(args)
-  print(args)
   p = subprocess.Popen(SplitArgs, stdout = subprocess.PIPE, stderr = subprocess.PIPE)
   out, err = p.communicate()
   return out