Skip to content

Commit

Permalink
Set higher verbosity when loading the online fixtures
Browse files Browse the repository at this point in the history
This also shows the current loading progress so the user gets some feedback
that things are happening
  • Loading branch information
rolandgeider committed Jan 23, 2024
1 parent 9e96a7e commit 8ba90ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wger/tasks.py
Expand Up @@ -281,7 +281,7 @@ def load_online_fixtures(context, settings_path=None):
pbar.update(len(data))
f.close()
print('Loading downloaded data, this may take a while...')
call_command("loaddata", f.name)
call_command("loaddata", f.name, '--verbosity=3')
print('-> removing temp file')
print('')
os.unlink(f.name)
Expand Down

0 comments on commit 8ba90ad

Please sign in to comment.