diff --git a/client/djrandom_client/client.py b/client/djrandom_client/client.py
index 0ad35888342accc8cc19eda9eda618ab4e7da651..0daaa804882422e2007ff2a6850d4d92e54d9a6b 100644
--- a/client/djrandom_client/client.py
+++ b/client/djrandom_client/client.py
@@ -52,7 +52,12 @@ class FullScan(threading.Thread):
             time.sleep(delay)
 
 
-def run_client(server_url, music_dir, api_key, run_once, bwlimit, enable_watcher):
+def run_client(server_url, music_dir, api_key, run_once, bwlimit,
+               enable_watcher):
+    log.debug('settings: server=%s, music_dir=%s, api_key=%s, '
+              'bwlimit=%s, watcher=%s' % (
+        server_url, music_dir, api_key, bwlimit, str(enable_watcher)))
+
     # Warn if we're running without a bandwidth limit.
     bwlimit = int(bwlimit)
     if bwlimit <= 0: