Skip to content

Commit

Permalink
added log for load file
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsarik committed Nov 21, 2017
1 parent 7a33e04 commit 7b29032
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/customers/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -4949,6 +4949,12 @@ def files_lister(request):
data_post = request.POST
form = UploadFileForm(request.POST, request.FILES)

####################### write log file
files_lister_log.write('LOAD FILE POST: {0}\n'.format(data_post))
files_lister_log.write('LOAD FILE request.FILES: {0}\n'.format(request.FILES))
files_lister_log.write('\n')
#######################

# print '!!!!!!!!!! POST ================== ', data_post
# print '!!!!!!!!!!!!! DATA SET ==================== ', request.session['select_data_set']

Expand Down

0 comments on commit 7b29032

Please sign in to comment.