Skip to content
Snippets Groups Projects
Commit 68244533 authored by ale's avatar ale
Browse files

report config settings at startup

parent 1b5131fe
Branches
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment