Private
Public Access
1
0

adding logging in dataprep - for datetime issues

This commit is contained in:
Sander Roosendaal
2021-06-15 10:38:45 +02:00
parent f3ae66f419
commit ca1d63938f
4 changed files with 85 additions and 1 deletions

View File

@@ -4817,6 +4817,14 @@ def workout_upload_api(request):
summary = post_data.get('summary',None)
timezone = post_data.get('timezone',None)
s = 'Posting c2id {c2id} to Rowsandall. Startdatetime {startdatetime}, time zone {timezone}'.format(
c2id=c2id,
startdatetime=startdatetime,
timezone=timezone,
)
dologging('debuglog.log',s)
r = None
if form.is_valid():
t = form.cleaned_data['title']