Skip to content
Snippets Groups Projects
Commit a6ebf0cc authored by Robert Latta's avatar Robert Latta
Browse files

removed redundant logging

parent 425b56d6
No related branches found
No related tags found
No related merge requests found
......@@ -65,10 +65,8 @@ def export_data_for_otrs(self, files_to_export=None):
if OTRSFiles.CUSTOMER_COMPANIES in files_to_export:
cus_co_path = temp_path.joinpath(f'{prefix}customer_company.csv')
with open(cus_co_path, 'w+') as f:
logger.debug('\n\n1\n\n')
writer = csv.writer(f, delimiter='^')
writer.writerows(ims_data.otrs_get_customer_company_rows(ds))
logger.debug('\n\n2\n\n')
if OTRSFiles.CUSTOMER_USERS in files_to_export:
cus_usr_path = temp_path.joinpath(f'{prefix}customer_user.csv')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment