diff --git a/.idea/workspace.xml b/.idea/workspace.xml index a84104f..f7cfc87 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,13 +1,15 @@ - + - + + - + + @@ -462,7 +464,6 @@ - @@ -487,6 +488,7 @@ - \ No newline at end of file diff --git a/Dashbord_queries/factures_tbd_qries.py b/Dashbord_queries/factures_tbd_qries.py index 0bada44..1743b9a 100644 --- a/Dashbord_queries/factures_tbd_qries.py +++ b/Dashbord_queries/factures_tbd_qries.py @@ -857,7 +857,7 @@ def Get_Qery_List_Factures_Data_By_Client_V2(diction): """ tab_data = [] for retval in MYSY_GV.dbname['partner_invoice_header'].aggregate(pipe_qry): - print(" ### retval ici pipe_qry = ", retval) + #print(" ### retval ici pipe_qry = ", retval) val_tmp = val_tmp + 1 diff --git a/Dashbord_queries/inscription_tdb_qries.py b/Dashbord_queries/inscription_tdb_qries.py index 68b02af..a5bcf1b 100644 --- a/Dashbord_queries/inscription_tdb_qries.py +++ b/Dashbord_queries/inscription_tdb_qries.py @@ -401,7 +401,7 @@ def Get_Qery_Inscription_By_Session_By_Periode(diction): qery_match = {'$and': [{"partner_owner_recid": str(my_partner['recid'])}, {"valide": '1'}, {"apprenant_id": {"$exists": True}}, - {"inscription_validation_date": {"$exists": True}}, + {"inscription_validation_date": {"$exists": True, '$ne': ""}}, {"status": "1"}, {'mysy_inscription_validation_date': {'$gte': filt_session_start_date_ISODATE, '$lte': filt_session_end_date_ISODATE}}, @@ -678,7 +678,7 @@ def Get_Qery_Inscription_By_Session_By_Periode_cumule(diction): qery_match = {'$and': [{"partner_owner_recid": str(my_partner['recid'])}, {"valide": '1'}, {"apprenant_id": {"$exists": True}}, - {"inscription_validation_date": {"$exists": True}}, + {"inscription_validation_date": {"$exists": True, '$ne': ""}}, {"status": "1"}, {'mysy_inscription_validation_date': {'$gte': filt_session_start_date_ISODATE, '$lte': filt_session_end_date_ISODATE}}, @@ -810,7 +810,7 @@ def Get_Qery_Inscription_By_Session_By_Periode_cumule(diction): }, """ - print(" ### Get_Qery_Inscription_By_Session_By_Periode ici pipe_qry = ", pipe_qry) + print(" ### Get_Qery_Inscription_By_Session_By_Periode_cumule ici pipe_qry = ", pipe_qry) axis_data = [] cpt = 0 @@ -959,7 +959,7 @@ def Get_Qery_Inscription_Group_By_Class(diction): qery_match = {'$and': [{"partner_owner_recid": str(my_partner['recid'])}, {"valide": '1'}, {"apprenant_id": {"$exists": True}}, - {"inscription_validation_date": {"$exists": True}}, + {"inscription_validation_date": {"$exists": True, '$ne': ""}}, {"status": "1"}, {'mysy_inscription_validation_date': {'$gte': filt_session_start_date_ISODATE, '$lte': filt_session_end_date_ISODATE}}, @@ -1094,7 +1094,7 @@ def Get_Qery_Inscription_Group_By_Class(diction): }, """ - print(" ### Get_Qery_Inscription_By_Session_By_Periode ici pipe_qry = ", pipe_qry) + print(" ### Get_Qery_Inscription_Group_By_Class ici pipe_qry = ", pipe_qry) axis_data = [] my_data = [] @@ -1245,7 +1245,7 @@ def Get_Qery_Inscription_Group_By_Session(diction): qery_match = {'$and': [{"partner_owner_recid": str(my_partner['recid'])}, {"valide": '1'}, {"apprenant_id": {"$exists": True}}, - {"inscription_validation_date": {"$exists": True}}, + {"inscription_validation_date": {"$exists": True, '$ne': ""}}, {"status": "1"}, {'mysy_inscription_validation_date': {'$gte': filt_session_start_date_ISODATE, '$lte': filt_session_end_date_ISODATE}}, diff --git a/Inscription_mgt.py b/Inscription_mgt.py index afb2c64..ea05cef 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -7408,8 +7408,11 @@ def Get_Statgaire_List_Partner_with_filter(diction): 'foreignField': 'internal_url', 'pipeline': [{'$match':{ '$and' : [ filt_class_title, filt_class_partner_recid] } }, {'$project': {'title': 1, 'domaine': 1, 'duration': 1, - 'duration_unit': 1, '_id':1, - 'recyclage_delai':1, 'recyclage_periodicite':1}}], + 'duration_unit': 1, + '_id':1, + 'recyclage_delai':1, + 'recyclage_periodicite':1, + 'recyclage_alert':1}}], 'as': 'myclass_collection' } }, @@ -7644,6 +7647,7 @@ def Get_Statgaire_List_Partner_with_filter(diction): """ val['class_recyclage_delai'] = "" val['class_recyclage_periodicite'] = "" + val['class_recyclage_alert'] = "" val['nb_jour_avant_recyclage'] = "" val['warning_recyclage'] = "0" @@ -7657,9 +7661,12 @@ def Get_Statgaire_List_Partner_with_filter(diction): if ("recyclage_periodicite" in retVal['myclass_collection'][0].keys()): val['class_recyclage_periodicite'] = retVal['myclass_collection'][0]['recyclage_periodicite'] + if ("recyclage_alert" in retVal['myclass_collection'][0].keys()): + val['class_recyclage_alert'] = retVal['myclass_collection'][0]['recyclage_alert'] - if (str(val['class_recyclage_delai']) != "" and str(val['class_recyclage_periodicite']) != ""): + + if (str(val['class_recyclage_delai']) != "" and str(val['class_recyclage_periodicite']) != "" and str(val['class_recyclage_alert']) != "" ): session_date_debut = str(session_retval['date_debut'])[0:10] session_date_debut_datetime = datetime.strptime(str(session_date_debut).strip(), '%d/%m/%Y') if (str(val['class_recyclage_periodicite']) == "mois"): @@ -7676,9 +7683,9 @@ def Get_Statgaire_List_Partner_with_filter(diction): local_delta = session_date_debut_datetime - mytoday_datetime val['nb_jour_avant_recyclage'] = str(local_delta.days) - if( recyclage_warning == "1" ): - if( local_delta.days < mycommon.tryInt(str(recyclage_warning_lead_time)) ): - val['warning_recyclage'] = "1" + + if( local_delta.days < mycommon.tryInt(str(val['class_recyclage_alert'])) ): + val['warning_recyclage'] = "1" @@ -7686,7 +7693,8 @@ def Get_Statgaire_List_Partner_with_filter(diction): /!\ : 28/12/2023 - update S'il y a de la data dans la collection 'apprenant_collection' cela veut dire qu'il y a un dossier apprenant, alors on va plutot retourner les info qui sont dans cette collection - """ + + /!\ 31/07/2024 - annulation de la recheche de l'apprenant if ('apprenant_collection' in retVal.keys() and len( retVal['apprenant_collection']) > 0): if ("civilite" in retVal['apprenant_collection'][0].keys()): val['civilite'] = str(retVal['apprenant_collection'][0]['civilite']).lower() @@ -7768,11 +7776,11 @@ def Get_Statgaire_List_Partner_with_filter(diction): else: val['pays'] = "" - + """ RetObject.append(mycommon.JSONEncoder().encode(val)) - print(" ### RetObject = ", str(RetObject)) + #print(" ### RetObject = ", str(RetObject)) return True, RetObject except Exception as e: diff --git a/Log/log_file.log b/Log/log_file.log index d7b3edf..1019795 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -2624803,3 +2624803,6619 @@ INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 13:21:10] "POST /myclass/api/get_partne INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 13:21:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 13:21:11] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 13:21:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:03:02.140713 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-30 14:03:02.141704 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-30 14:03:02.141704 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-30 14:03:02.141704 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-30 14:03:02.141704 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-30 14:03:20.781139 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-30 14:03:20.781139 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-30 14:03:20.781139 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-30 14:03:20.781139 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-30 14:03:20.781139 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-30 14:41:29.809058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:29.810073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:29.813182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:29.818281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:29.820275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:29.821277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:29.825284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:29.830278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:29] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:29.846969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.267255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.590279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.595402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.601132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.609390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.613918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.620075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.625617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.627609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.637487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.643494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.648485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.651488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.662506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.665509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.673355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.683360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.689357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.695352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.703514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.710749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.716086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.723084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.728090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.737079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.742077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.745694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.754275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.760293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.764867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.772794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.774927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.783405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.784889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.790965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.801124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.807629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.815631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.822646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.828068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.835009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.842045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.849506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.851506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.859219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.867262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.875281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.881274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.892871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.896887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.903389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.910065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.917322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.923370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.928679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.932953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.940233 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.947685 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:41:30.956010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.960554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:41:30.965663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:41:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:06.437447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:06.438853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:06.441661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:06.444161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:06.470899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:06.484926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:06.487377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:06.492168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:06] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:06.531585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:06] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:06] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:06] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:06.918416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:06] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:06] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.448993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.454991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.458995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.465497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.480509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.484511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.491393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.497331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.503825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.511433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.514448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.521882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.530039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.539038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.546083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.553634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.559937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.565205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.571370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.576585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.582954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.593489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.598929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.603924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.612046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.619220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.625524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.632525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.639526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.644528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.650057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.657909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.668932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.676956 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.682950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.691478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.706495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.715495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.722494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.732499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.738509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.744505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.754503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.764503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.772862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.778881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.786881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.794944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.801113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.806220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.815865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.824868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.837074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.853495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.860008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.867010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.876097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:43:07.879102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.888635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:43:07.895848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:43:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.310031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:42.313411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:42.315968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:42.318150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:42.326692 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:42.329693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.334688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:42.335684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:42.339699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.518684 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.875309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:42.880044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.888581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:42.893674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.897982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.901799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.911168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:42.917183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.922723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.929720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.935721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.940718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.947303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.953775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:42.958247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.966340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.973359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:42.976354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.982364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.987863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:42.994286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.001611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.009094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.013242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.018248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.024292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.032545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.036560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.041877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.048580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.054598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.058365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.065008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.073134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.079423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.081427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.088616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.097006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.105421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.109530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.119984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.131015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.135515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.141152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.152019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.154830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.161852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.170851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.176265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.183927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.189091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.194170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.201251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.210447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.215860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.223476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.226799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.234195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:44:43.239594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:44:43.245239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:44:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:08.794031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:08.798038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:08.800414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:08.803500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:08.805503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:08.809499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:08.815675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:08] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:08.818915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:08.835245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:08] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:08] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:08.969990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.512470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.518470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.524470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.532470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.539469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.546470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.553469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.564469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.572378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.578423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.585423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.594011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.606136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.616270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.626707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.632952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.638300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.651214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.656208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.662825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.670724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.678771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.686354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.692322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.708096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.713944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.724913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.729365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.737558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.746550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.760292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.772611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.778656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.788041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.793178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.798487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.809382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.816592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.821623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.829724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.840980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.851032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.854050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.866862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.874690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.882007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.888550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.895330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.906084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.911498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.917806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.925710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.933434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.939628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.948423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.955366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.966175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:09.973264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.979273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:09.984174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:38.848345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:38.851348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:38.853902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:38.855338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:38.857371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:38.860938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:38] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:38.865113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:38.866111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:38.871117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:38] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.136783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.399492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.404777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.405775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.410041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.420838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.424067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.433482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.454563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.459560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.470569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.484897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.500036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.502890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.507888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.515285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.520277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.526233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.531626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.534644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.540614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.546386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.551157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.557690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.563204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.565605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.573729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.578183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.584888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.588940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.591607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.597408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.604529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.610697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.618137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.622425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.630865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.634967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.638010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.645435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.649471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.654971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.664545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.666916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.672013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.680573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.685998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.688995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.699474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.711261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.717297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.722138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.729264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.734095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.740496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.744131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.750277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.756929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.766792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:52:39.770351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:52:39.775453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:52:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:08.929071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:08.931073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:08.933883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:08.936903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:08.939903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:08] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:08.948961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:08.950954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:08.953954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:08.959158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.241878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.621095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.624465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.629132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.635577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.642194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.646208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.652506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.660900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.666092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.672873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.680337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.690149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.694919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.700081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.710076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.715554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.720004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.732076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.738405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.745671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.752133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.757188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.762606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.766598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.773605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.777267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.786466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.790180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.795382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.801382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.805799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.812916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.817927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.819926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.833501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.837314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.842521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.855802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.861210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.865539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.873539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.877996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.883906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.890902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.893905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.902400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.907840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.913084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.918671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.920675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.930784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.939200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.942571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.952678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.955094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.960462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.968408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.976889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:09.980900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:09.985971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:39.554628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:39.555625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:39.559147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:39.561381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:39.563409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:39] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:39.569664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:39.573659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:39.573659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:39.575659 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:39.796463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:39] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:39] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:39] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.107859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.111597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.116533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.119972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.124693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.133899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.137908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.141910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.146901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.156913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.163508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.172659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.174974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.183269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.192439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.197516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.202148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.207228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.216263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.222695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.224728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.230035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.234192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.238351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.240374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.247178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.252866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.257707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.262065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.269561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.272776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.276889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.282250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.285644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.289154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.295153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.300725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.305951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.309048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.314921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.320064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.326085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.330907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.335048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.341041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.349998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.355206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.358705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.365986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.371976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.377083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.382321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.387394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.391465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.396954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.400313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.407678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:55:40.414354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.418252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:55:40.422530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:55:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:24.836185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:24.843465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:24.850010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:24.865832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:24.872599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:24.885550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:24.895604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:24.902150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:24.909274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:24.915670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:24.928644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:24.934918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:24.941387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:24.956224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:24.959281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:24.971109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:24.981048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:24.989746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:24.991969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.003646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:25.010093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.022743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.026744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:25.034441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.047877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.056937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:25.063944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.075935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.084990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.093996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:25.100990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.112998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.122013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:25.128188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.136526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.147240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:25.153678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.162809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.175803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.185373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.194255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:25.197560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:25.205796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.213516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:25.220590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.229731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.242136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.247908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:25.253907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.259345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:25.263863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.276432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.288369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.296379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:25.301089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.315575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.323140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.330851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:25.337856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:25.344410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:43.232519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:43.237007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:43.239027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:43.264717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:43.268726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:43] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:43.281795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:43.287057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:43.291059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:43.294062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:43] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:43] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:43.494637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:43] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:43] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:43] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:43] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:43] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.061975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.071979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.078984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.094326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.103755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.108086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.113192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.119200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.127184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.134662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.138664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.144659 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.154911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.163387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.170846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.175854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.184289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.187275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.194274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.202279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.208278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.217274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.220553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.229689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.239657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.246051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.250066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.253825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.261840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.267125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.276756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.284129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.292132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.296132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.304254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.308254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.316767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.322765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.332500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.341679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.349010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.355784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.367374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.370803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.376965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.388726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.396899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.404400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.408792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.417003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.425004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.432029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.440406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.445929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.453950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.459944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:57:44.466400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.474404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.480769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:57:44.487175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:57:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.809016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:23.813656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:23.817933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.824959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:23.828961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.839283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.842482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:23.849765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.857120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.863336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.869290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.873286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:23.876284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.888671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:23.892114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.901742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.911089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.916223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.923100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:23.926151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.934295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.939386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.945887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.952774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:23.956238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.962895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.968521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.974534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:23.978775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.983820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.991319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:23.995308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:24.000958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.004957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:24.011033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.019889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:24.025270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:24.026782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:24.032501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.044397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.053153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:24.057224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.066184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.075554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.082244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.089769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.097105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.105478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.111280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.119221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.125898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.133765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.137797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:24.142780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.153400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:24.155710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 14:58:24.163189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.171241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.177959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 14:58:24.184553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 14:58:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:00.906614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:00.909977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:00.911977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:00.913978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:00] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:00.917980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:00.932977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:00.935976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:00.936979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:00.940975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.191162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.480956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.487947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.490995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.499563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.504563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.509951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.516432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.522877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.529274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.534331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.538737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.543735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.551992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.557326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.563873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.570525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.574711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.578809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.585754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.589862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.593893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.598219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.603860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.606351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.612046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.618514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.623041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.629463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.635497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.639506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.647685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.651412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.656262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.658278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.662745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.668298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.675302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.680291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.685825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.687826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.692538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.702030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.708688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.713596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.720792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.726971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.732376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.735918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.743587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.752389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.756389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.761541 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.767571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.773149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.778069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.782582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.788399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:01.794204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.797904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:01.802279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:36.763549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:36.767547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:36.767547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:36.772096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:36.774866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:36.777311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:36] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:36.782556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:36.789545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:36.802574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:36] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:36] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.026003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.389096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.393087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.398265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.405128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.409819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.416412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.423228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.431673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.438336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.443880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.450957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.459643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.464044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.470388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.482592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.487097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.490174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.500634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.504864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.510085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.517610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.524938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.527977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.535029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.539799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.548635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.553454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.560275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.569039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.575229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.580259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.587601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.591854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.597412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.604334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.610913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.617753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.625761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.631003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.635107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.648079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.654855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.662713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.675714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.690725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.696722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.709740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.716276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.722273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.730279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.737355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.743748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.749770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.761843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.771415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.776675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.781856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.790858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:03:37.794854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:03:37.803878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:03:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:29.400491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:29.404891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:29.407147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:29.411145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:29.412555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:29.416220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:29] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:29.421242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:29.425386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:29.428697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:29] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:29] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:29.665409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:29] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:29] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:29] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:29] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:29] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.063291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.068771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.073801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.078148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.091130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.093634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.101712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.110581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.120615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.130607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.140597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.145605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.152583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.159790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.169478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.171883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.178899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.184952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.191431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.196013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.201903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.215622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.227419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.231617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.238974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.244602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.252696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.257908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.264463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.269473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.278461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.287491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.294485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.305029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.311530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.316710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.327749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.332456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.337099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.344582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.348142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.361297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.370407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.376680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.382243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.394931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.401472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.405317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.413483 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.423080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.430512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.436965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.443537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.450827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.455831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:30.463558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.469833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.478056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.485109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:30.490741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:39.797374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:39.800653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:39.801925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:39.806596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:39.808123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:39.812165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:39] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:39.816162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:39.818163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:39.825624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.083777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.429117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.435763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:40.441815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:40.445238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.454175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.460080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.468644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.474698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.480705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.486704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.492705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.497719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.504457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.510667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.518331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.520672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:40.526232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:40.532254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.540386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.548088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.554079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.558630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:40.565563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.571759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.579982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.591227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:40.594389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.602615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.608815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.614628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.622261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:40.625380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:40.631165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.634410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.644215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.649618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:40.655308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.660751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.667261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.674750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.683823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.693665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.699454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.709470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.715493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.722943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.731941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.741935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:40.748823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:40.754551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.763956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.772281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.779790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:40.785829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.793396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.799415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:04:40.805121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.810963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.816681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:04:40.825201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:04:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:18.734526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:18.736525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:18.738710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:18.743278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:18.746692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:18] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:18.750691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:18.754232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:18.754232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:18.764392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:18] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:18] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:18.965587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:18] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.351347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.355427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.361439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.366447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.369645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.374052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.379599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.385577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.388095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.395222 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.401296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.407548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.411484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.415674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.422092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.430673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.435494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.443987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.450418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.453622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.460865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.466508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.471755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.478204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.483400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.488403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.491401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.498514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.504879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.506878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.513174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.518065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.523286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.529669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.534734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.540873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.544292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.553159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.557703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.562912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.566045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.572518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.580045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.583047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.586046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.594194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.602842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.605855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.612671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.617751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.623753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.647772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.661432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.663431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:05:19.667416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.676425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.681440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.688487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.697771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:05:19.705423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:05:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:57.475478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:57.479511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:57.480502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:57.494750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:57.497863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:57.504272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:57.507993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:57] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:57.528073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:57.545630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:57] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:57.651958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:57] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:57] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:57] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:57] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:57] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:57] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.232855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.241188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.246836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.253790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.260578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.267127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.273987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.279004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.288926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.297793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.301820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.305880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.314562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.320277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.334476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.343805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.349299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.357686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.367348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.373693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.378553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.382961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.391562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.399786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.409753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.415784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.422719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.430687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.436884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.443632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.457189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.463038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.471795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.480389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.486856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.494438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.502219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.508772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.519888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.526249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.534717 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.545146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.552255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.560719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.570744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.576800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.582967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.587391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.592869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.601993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.611779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.617112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.625929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.631411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.639940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.648316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.653525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.661901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:08:58.668453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:08:58.675288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:08:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:23.411055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:23.414061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:23.420049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:23.424054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:23.434056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:23] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:23.442054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:23.444062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:23.446061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:23.449055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:23] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:23.706177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:23] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:23] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:23] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:23] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.207714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.209857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.216537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.220345 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.226551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.230005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.235479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.243024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.248306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.251906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.257684 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.263682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.269057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.272960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.282092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.287612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.291993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.298286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.301423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.307031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.309030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.317582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.322871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.325872 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.332991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.340652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.344988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.350142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.356525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.360597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.367396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.373922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.378178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.383505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.388862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.395944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.399986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.405095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.412120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.417842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.421910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.428553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.435024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.439399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.445941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.450486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.455853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.464305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.469971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.478126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.484146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.488892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.493193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.503010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.507537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.514596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:09:24.519286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.524898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.531602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:09:24.539385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:09:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:57.888895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:57.893084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:57.900956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:57.908215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:57.915937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:57.921255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:57.929213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:57.937133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:57.941511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:57.950534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:57.951555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:57.957664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:57.962584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:57.972961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:57] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:57.987772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:57.997054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.003984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:58.008561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.014226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.021966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:58.027551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.034289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.043146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.051200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:58.056485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.061798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.069888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.079728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.087016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:58.092764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.099779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:58.105252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.112766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.124054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.130618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:58.138715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.150961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.157048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:58.164436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.170997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.181341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.189036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.196005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:58.201731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.211793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.223703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.228799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:58.236034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.242212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.246909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.254194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:58.255190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.264194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:58.271320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.279321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:58.282949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.288446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:58.297119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:10:58.310091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:10:58.318186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:10:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:09.280925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:09.286260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:09.288260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:09.293273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:09.314824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:09.318830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:09.323125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:09.323125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:09.378672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:09.424923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:09.925744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:09.929191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:09.935076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:09.942197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:09.946055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:09.951073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:09.957841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:09.963843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:09.970024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:09.973399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:09.980366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:09.987962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:09.991212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:09.997103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.002145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.005603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.018799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:10.021795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:10.026704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.030389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.039351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:10.043892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.049894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.054166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.060497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:10.062739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:10.068181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.074499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.080611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.086027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.091726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.104616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.108966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.113716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:10.118088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.124355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.131434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.136713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.144243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.150699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:10.153701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.165408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.169348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:10.177844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.188876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:10.193873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:10.199411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.206002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.210003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.217450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.222203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.229159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:10.234676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.241540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.248975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:10.252176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.263816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-30 15:12:10.269096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.274183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-30 15:12:10.279193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jul/2024 15:12:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:53:23.848916 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 09:53:23.848916 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 09:53:23.849915 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 09:53:23.849915 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 09:53:23.849915 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 09:53:37.794997 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 09:53:37.794997 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 09:53:37.796001 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 09:53:37.796001 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 09:53:37.796001 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-31 09:54:48.453845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:48.454841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:48.455840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:48.457839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:48.457839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:48.459817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:48.462839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:48.462839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:48] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:48] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:48] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:48] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:48] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:48] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:48.853108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:48] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:48.922258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:48] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:49.258672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:49.259706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:49.259706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:49.264734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:49.268705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:49.271889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:49.599204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:49.600600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:49.601620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:49.606634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:49.615558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:49.617600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:49.928330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:49.928330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:49.935820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:49.940051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:49.945522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:49.949542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:50.240474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:50.245988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:50.253073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:50.254068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:50.260797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:50.266156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:50.553832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:50.556846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:50.565421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:50.568921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:50.575200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:50.578351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:50.871216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:50.875246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:50.881544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:50.882569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:50.888565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:50.890825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:51.196146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:51.198117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:51.202116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:51.207118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:51.210441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:51.216939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:51.519332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:51.520341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:51.523690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:51.528225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:51.533734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:51.537196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:51.846142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:51.847148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:51.849155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:51.858443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:51.860469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:51.866755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:52.174161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:52.175183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:52.176169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:52.176169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 09:54:52.180171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 09:54:52.186569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 09:54:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:12.776838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:12.783223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:12.784226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:12.787220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:12.790222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:12.792214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:12.796224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:12] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:12.799220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:12.804263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:12] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:12.906608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:12] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:12] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.368523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.369530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.371529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.376568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.385566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.391075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.399605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.405274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.410168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.414452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.422191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.427703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.433266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.437988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.442554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.447114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.454346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.458338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.468283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.472202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.478040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.482055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.486270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.488721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.495178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.503951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.508049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.513729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.520484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.523776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.528932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.536649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.539834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.547494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.550792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.555749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.559109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.566851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.572903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.575908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.581116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.589856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.594536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.599684 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.607916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.613749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.621974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.627105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.632750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.640969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.643977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.654261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.661344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.665669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.671922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.677482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.687855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.690241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:13.699485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:13.702204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:28.774261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:28] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:28.966678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:28.970174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:28.975712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:28.983350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:28.989349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:28.997439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:29.003295 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-07-31 10:03:29.006555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:29.022437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:29.030993 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:29.137771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:29.141768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:29.146767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:29.152765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:29.158786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:29.165785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:29.176907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:29.191920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:29.211801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:29.217290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:29] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:53.704120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.707934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.712353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.719087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.727087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.733083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:53.742083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.749099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:53.762218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.767649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.776409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.784395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:53.793398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.806231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:53.820498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:53.841455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.844573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:53.854214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.858745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.863080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.867424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:53.881275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.887347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:53.901190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:53] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:03:54.299475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:03:54.303618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:03:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:12:43.111590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.115145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.118757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.124342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.127854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.134863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:12:43.153167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.156167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:12:43.176683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.178954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.184714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:12:43.196747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.199218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:12:43.209738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.217976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:12:43.233991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:12:43.247227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.249238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:12:43.254675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.264260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:12:43.272347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.278593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.287881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:12:43.303902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:43] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:12:43.985444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.988892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.994726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:12:43.999711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:44] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:44] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:12:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:15:49.353841 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:15:49.353841 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:15:49.353841 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:15:49.353841 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:15:49.353841 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:16:14.558171 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:16:14.558171 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:16:14.558171 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:16:14.558171 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:16:14.558171 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:16:38.196555 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:16:38.196555 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:16:38.196555 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:16:38.197565 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:16:38.197565 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:17:25.541813 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:17:25.541813 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:17:25.541813 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:17:25.541813 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:17:25.541813 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:17:52.855931 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:17:52.855931 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:17:52.855931 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:17:52.855931 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:17:52.855931 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:18:14.720461 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:18:14.721463 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:18:14.721463 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:18:14.721463 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:18:14.721463 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:18:40.008193 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:18:40.008193 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:18:40.008193 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:18:40.009234 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:18:40.009234 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:19:16.244869 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:19:16.244869 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:19:16.244869 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:19:16.244869 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:19:16.244869 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:20:05.737766 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:20:05.737766 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:20:05.738766 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:20:05.738766 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:20:05.738766 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:20:45.109159 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:20:45.109159 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:20:45.110159 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:20:45.110159 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:20:45.110159 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-31 10:21:00.212790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:00.215787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:00.219027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:00.223024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:00.225037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:00.232028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:00.241174 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:00.249163 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:00.416266 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:00.419671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:00.424749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:00.428475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:00.434548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:00.444657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:00.465145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:00.471699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:00.481214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:00.490015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:00] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:03.646220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:03.649431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:03.653992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:03.655219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:03.663576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:03.674078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:03.678543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:03.687523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:03.696376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:03.702545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:03.710353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:03.720502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:03.727331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:03.739218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:03.744739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:03.753569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:03.767494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:03.779220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:03.789893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:03.794938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:03.806662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:03.814414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:03.822083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:03.830623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:03] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:04.254045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:04.256378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:04.260485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:04.265472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:04] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:04] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:04] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:04] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:22.274207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:22.884350 : update_class - La formation a bin ete mise à jour =6655b721fd47c656dcaf8f05 +INFO:root:2024-07-31 10:21:22.895910 : external_code = MYS_LIC_INF ==> MySy Licence Informatique +INFO:root:2024-07-31 10:21:24.373231 : La formation indexée (champ title) =6655b721fd47c656dcaf8f05 +INFO:root:2024-07-31 10:21:24.373231 : 1 ont été indexes => title +INFO:root:2024-07-31 10:21:24.384044 : external_code = MYS_LIC_INF ==> +INFO:root:2024-07-31 10:21:25.633770 : documents must be a non-empty list +INFO:root:2024-07-31 10:21:25.647758 : La formation indexée (champs objectif) =6655b721fd47c656dcaf8f05 +INFO:root:2024-07-31 10:21:25.647758 : 1 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:25] "POST /myclass/api/update_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:34.900889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:34.904162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:34.909169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:34.912184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:34.920189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:34.926182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:34.927530 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:34.941340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:34.947027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:34.972202 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:35.119007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:35.122015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:35.125031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:35.132303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:35.137742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:35.145187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:35] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:35.159748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:35] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:35.170119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:35.178280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:35.186788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:35] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:35] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:39.082036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.085057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.088534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.092853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.102371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:39.109102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:39.119163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.121589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:39.133321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.138333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:39.157231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.166708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:39.179792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:39.189257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.198479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:39.207607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:39.219436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.221735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.228273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:39.236797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.246151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:39.260715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.266631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.277646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:39.695975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.700072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.704252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:39.709296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:49.174086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:49.219810 : update_class - La formation a bin ete mise à jour =6655b721fd47c656dcaf8f05 +INFO:root:2024-07-31 10:21:49.230339 : external_code = MYS_LIC_INF ==> MySy Licence Informatique +INFO:root:2024-07-31 10:21:50.442025 : La formation indexée (champ title) =6655b721fd47c656dcaf8f05 +INFO:root:2024-07-31 10:21:50.443537 : 1 ont été indexes => title +INFO:root:2024-07-31 10:21:50.454277 : external_code = MYS_LIC_INF ==> +INFO:root:2024-07-31 10:21:51.695025 : documents must be a non-empty list +INFO:root:2024-07-31 10:21:51.707025 : La formation indexée (champs objectif) =6655b721fd47c656dcaf8f05 +INFO:root:2024-07-31 10:21:51.707025 : 1 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:51] "POST /myclass/api/update_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:56.944768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:56.950547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:56.956559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:56.958558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:56.967617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:56.974631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:56.975633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:56.990931 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:57.008427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:57.015480 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:57.200601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:57.202603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:57.206607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:57.213522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:57.218523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:57.226921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:57.238610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:57.256050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:21:57.261334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:21:57.265146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:21:57] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:22:01.861202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:22:01.865205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:22:01.868662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:22:01.873324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:22:01.877508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:22:01.885021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:22:01.890029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:01] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:22:01.899497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:22:01.903502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:01] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:01] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:22:01.918407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:22:01.938137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:22:01.946315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:01] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:01] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:22:01.952410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:22:01.962687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:22:01.973221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:01] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:01] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:22:01.983445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:22:01.994387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:22:02.003388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:22:02.017144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:22:02.026683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:22:02.042666 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:22:02.050305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:22:02.061355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:22:02.069573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:22:02.541669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:22:02.545877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:22:02.551254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:22:02.558780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:22:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:23:43.570924 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:23:43.570924 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:23:43.570924 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:23:43.570924 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:23:43.570924 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:24:30.098463 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:24:30.098463 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:24:30.098463 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:24:30.098463 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:24:30.098463 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-31 10:25:34.103593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:34.106605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:34.109210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:34.114693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:34.117997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:34.123424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:34] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:25:34.137155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:34] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:34] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:25:34.164980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:34] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:34] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:25:34.171198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:34.174191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:34.178741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:34.184754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:34] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:34] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:34] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:34] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:25:34.299998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:34.302985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:34] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:34] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:25:46.768064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:47.326067 : update_class - La formation a bin ete mise à jour =6655b721fd47c656dcaf8f05 +INFO:root:2024-07-31 10:25:47.337185 : external_code = MYS_LIC_INF ==> MySy Licence Informatique +INFO:root:2024-07-31 10:25:48.621272 : La formation indexée (champ title) =6655b721fd47c656dcaf8f05 +INFO:root:2024-07-31 10:25:48.621272 : 1 ont été indexes => title +INFO:root:2024-07-31 10:25:48.632795 : external_code = MYS_LIC_INF ==> +INFO:root:2024-07-31 10:25:49.790615 : documents must be a non-empty list +INFO:root:2024-07-31 10:25:49.794062 : La formation indexée (champs objectif) =6655b721fd47c656dcaf8f05 +INFO:root:2024-07-31 10:25:49.795076 : 1 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:49] "POST /myclass/api/update_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:25:58.615528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:58.617515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:58.621525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:58.624763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:58.629106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:25:58.633438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:58.643310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:25:58.654746 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-07-31 10:25:58.658042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:25:58.677819 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:25:58.897007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:58.899548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:58.903573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:58.905568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:58.914165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:58.917204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:25:58.933614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:25:58.940616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:25:58.953320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:25:58.960323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:58] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:25:59] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:04.740061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:04.743079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:04.747098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:04.752347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:04.759460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:04.762451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:04.768579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:04.775605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:04.781963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:04.790956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:04.803662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:04.806376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:04.821124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:04.829247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:04.838293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:04.841290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:04.850799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:04.862828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:04.870118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:04.879505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:04.891167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:04.896161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:04.903163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:04.910161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:05.331441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:05.334439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:05.339744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:05.342994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:05] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:05] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:05] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:05] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:11.429707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:11.432905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:11.436203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:11.441734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:11.446335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:11.450344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:11.457517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:11.461545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:11.470692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:11.482445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:11.494429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:11.504926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:11.512208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:11.515212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:11.523207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:11.535486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:11.544983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:11.547120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:11.552604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:11.567374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:11.580003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:11.584950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:11.590533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:11.600037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:11] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:12.160953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:12.164099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:12.167636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:12.171416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:12] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:12] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:12] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:12] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:16.802203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:16.857196 : update_class - La formation a bin ete mise à jour =66558c71fd47c656dcaf362f +INFO:root:2024-07-31 10:26:16.868660 : external_code = TVC_01 ==> TECHNICIEN VENDEUR CONSEIL +INFO:root:2024-07-31 10:26:18.114525 : La formation indexée (champ title) =66558c71fd47c656dcaf362f +INFO:root:2024-07-31 10:26:18.114525 : 1 ont été indexes => title +INFO:root:2024-07-31 10:26:18.122089 : external_code = TVC_01 ==> VENTE; VENDEUR; SKI +INFO:root:2024-07-31 10:26:19.362635 : La formation indexée (champs objectif) =66558c71fd47c656dcaf362f +INFO:root:2024-07-31 10:26:19.362635 : 1 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:19] "POST /myclass/api/update_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:24.039108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:24.042113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:24.045112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:24.049108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:24.055122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:24.059644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:24.066165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:24.071515 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:24.085888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:24.097973 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:24.238627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:24.241622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:24.244629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:24.247627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:24.252930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:24.258959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:24.269525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:24.285051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:24.292449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:24.298945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:27.961718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:27.964712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:27.967716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:27.973326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:27.977873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:27.983141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:27.994656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:27.997984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:28.015412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:28.017600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:28.028190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:28.036464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:28.043572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:28.054938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:28.063137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:28.071503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:28.083615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:28.095061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:28.108111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:28.112114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:28.116109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:28.123137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:28.133336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:28.137873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:28.561881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:28.564493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:28.567952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:28.572263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:33.208750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:33.212738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:33.216832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:33.222134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:33.227136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:33.237326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:33.250650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:33.271416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:33.277872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:33.286194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:33.294836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:33.300363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:33.312191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:33.319718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:33.326120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:33.335599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:33.349041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:33.358122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:33.374101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:33.378126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:33.384159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:33.389844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:33.394611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:33.399981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:34.030507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:34.033852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:34.039182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:34.044767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:34] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:34] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:34] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:34] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:53.104216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:53.124763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:53.137757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:53.145937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:53.150934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:53.162931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:53] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:53.201545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:53] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:53.277616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:53.284643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:26:53.296647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:53.308203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:26:53.319204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:53] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:53] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:54] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:54] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:26:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:29:40.527995 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:29:40.527995 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:29:40.528996 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:29:40.528996 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:29:40.528996 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:31:29.996035 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:31:29.997032 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:31:29.997032 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:31:29.997032 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:31:29.997032 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:32:23.897070 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:32:23.898061 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:32:23.898061 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:32:23.898061 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:32:23.898061 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-31 10:32:23.992915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:32:24.056461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:32:24.081481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:32:24.086459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:32:24.094502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:32:24.108005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:32:24.144043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:32:24.166030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:32:24] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:32:24] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:32:24] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:32:24] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:32:24.266325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:32:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:32:24.292333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:32:24] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:32:24.317939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:32:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:32:24] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:32:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:32:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:32:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:35:09.382906 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:35:09.382906 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:35:09.382906 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:35:09.382906 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:35:09.382906 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:35:53.622132 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:35:53.623187 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:35:53.623187 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:35:53.623187 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:35:53.623187 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-31 10:36:34.216887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:36:34.221309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:36:34.224256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:36:34.227389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:36:34.233973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:36:34.238270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:36:34.247255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:36:34.256102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:36:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:36:34.262458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:36:34.276019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:36:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:36:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:36:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:36:34.296711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:36:34.299814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:36:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:36:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:36:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:36:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:36:34] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:36:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:36:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:36:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:35.579450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:35.678759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:35.682241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:35.686249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:35.691252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:35.697200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:35.704802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:35.714067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:35.726543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:35] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:35] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:35.737471 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:35.739919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:35] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:35] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:39.242443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:39.245776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:39.250219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:39.255223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:39.260224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:39.266291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:39.274301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:39.285407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:39.298435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:39.309857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:39.321373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:39.326375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:39.331382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:39.340383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:39.352284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:39.361273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:39.370639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:39.381964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:39.388236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:39.392884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:39.396049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:39.404254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:39.410682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:39.422894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:39.965714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:39.967837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:39.970848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:39.974923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:44.863480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:44.866886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:44.870257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:44.872262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:44.876574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:44.881942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:44.886044 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:44.892205 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:45.057799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:45.061929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:45.064030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:45.069600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:45.073093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:45.081215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:45] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:45.104073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:45.109929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:45.114873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:45.126668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:45] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:45] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:45] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:51.269783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:51.272529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:51.275826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:51.280322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:51.288463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:51.298070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:51.305864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:51.310284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:51.319461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:51.325839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:51.338398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:51.344467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:51.351467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:51.361660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:37:51.366727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:37:51.376347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:37:51] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:38:04.101012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:38:04.678068 : update_class - La formation a bin ete mise à jour =66558c71fd47c656dcaf362f +INFO:root:2024-07-31 10:38:04.683073 : external_code = TVC_01 ==> TECHNICIEN VENDEUR CONSEIL +INFO:root:2024-07-31 10:38:05.077959 : La formation indexée (champ title) =66558c71fd47c656dcaf362f +INFO:root:2024-07-31 10:38:05.077959 : 1 ont été indexes => title +INFO:root:2024-07-31 10:38:05.081964 : external_code = TVC_01 ==> VENTE; VENDEUR; SKI +INFO:root:2024-07-31 10:38:05.423565 : La formation indexée (champs objectif) =66558c71fd47c656dcaf362f +INFO:root:2024-07-31 10:38:05.423565 : 1 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:05] "POST /myclass/api/update_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:38:10.040924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:38:10.045316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:38:10.049431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:38:10.054429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:38:10.065082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:38:10.070155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:38:10.074792 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:38:10.080167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:38:10.092311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:38:10.117881 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:38:10.271649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:38:10.275146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:38:10.279546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:38:10.286254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:38:10.293607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:38:10.303942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:38:10.314038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:38:10.328666 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:38:10.338902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:38:10.344453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:38:10] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:08.701908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:08.705919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:08.708924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:08.712921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:08.717920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:08.726446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:08.734630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:08.745630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:08.754078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:08.757571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:08.765453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:08.776587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:08.779584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:08.786582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:08.794586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:08.799065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:08.802365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:08.827112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:08.833792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:08.860464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:08.862797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:08.870675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:27.402537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:27.406018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:27.410377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:27.414377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:27.420379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:27.426415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:27] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:27.435261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:27] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:27] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:27] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:27] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.400299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.403318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.408320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.411341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.417001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.424491 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.427856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.435105 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.595485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.598985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.604532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.609308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.617059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.620981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.639277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.647282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.657999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.667866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.844868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.849793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.853205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.858516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.864850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.872424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.884829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.898520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.911642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.926399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.933257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.937258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.941251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.948779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.959947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.970416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.977420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.987629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:32.993067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:32] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:32.998127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:33] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:33.010757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:33.015503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:33] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:33] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:33.032253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:33] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:33.041244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:33] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:33.861248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:33.864259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:33.869724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:33.875454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:33] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:33] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:33] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:33] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:43.647306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:43.676051 : update_class - La formation a bin ete mise à jour =65f04a3483026d79b3e74b40 +INFO:root:2024-07-31 10:39:43.680060 : external_code = MYSY_Demo_AP ==> DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE +INFO:root:2024-07-31 10:39:43.996477 : La formation indexée (champ title) =65f04a3483026d79b3e74b40 +INFO:root:2024-07-31 10:39:43.997478 : 1 ont été indexes => title +INFO:root:2024-07-31 10:39:44.001450 : external_code = MYSY_Demo_AP ==> AROMATHERAPIE; HUILES ESSENTIELLES; AROMA +INFO:root:2024-07-31 10:39:44.314062 : La formation indexée (champs objectif) =65f04a3483026d79b3e74b40 +INFO:root:2024-07-31 10:39:44.314062 : 1 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:44] "POST /myclass/api/update_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:48.710603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:48.713602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:48.718137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:48.723139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:48.730144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:48.734332 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-07-31 10:39:48.735404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:48.746529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:48.762493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:48.780978 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:48.916362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:48.918357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:48.921357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:48.928361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:48.936360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:48.942359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:48.951363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:48.959498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:48.968275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:48.976985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:48] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:49] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:49] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:59.536912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:59.540451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:59.545820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:59.547835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:59.556977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:59.564042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:59.566481 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:59.575803 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:59.736661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:59.739771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:59.744778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:59.748783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:59.758156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:59.764166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:59.771174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:59.781152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:59.791878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:59.801354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:39:59] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:39:59.979614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:59.981632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:59.985630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:59.990519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:59.992713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:39:59.998009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:00.023382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:00.037648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:00.040851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:00.047369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:00.050455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:00.056483 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:00.074862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:00.083268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:00.089273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:00.099453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:00.104919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:00.119160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:00.123368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:00.132824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:00.139527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:00.145949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:00.150946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:00.164826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:00] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:01.004840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:01.007071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:01.010948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:01.013297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:01] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:01] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:10.212241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:10.215540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:10.218921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:10.224519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:10.230416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:10.234425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:10.242953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:10.247954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:10.253957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:10] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:10.271267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:10.276570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:40:10.279583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:10] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:10] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:10] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:49.006679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:49] "POST /myclass/api/Inscription_Recyclage_Management_Done/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:40:49.149243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:40:49] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:42:25.943710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:42:25.947010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:42:25.951635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:42:25.955922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:42:25.959927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:42:25.965933 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-07-31 10:42:25.966943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:42:25.976591 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:42:26.140096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:42:26.143113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:42:26.148111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:42:26.153110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:42:26.161785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:26] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:42:26.170712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:42:26.175717 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:26] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:42:26.196201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:42:26.200220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:26] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:42:26.218158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:42:26.249455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:26] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:42:26.269454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:26] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:26] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:42:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:44:42.073107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:44:42] "POST /myclass/api/Inscription_Recyclage_Management_Done/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:44:42.407853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:44:43] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:45:09.227044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:45:09.231535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:45:09.239553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:45:09.245203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:45:09] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:45:09] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:45:09] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:45:09] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:45:10.283366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:45:10.285947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:45:10.291471 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:45:10.295479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:45:10.302486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:45:10.303473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:45:10] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:45:10] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:45:10] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:45:10] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:45:10] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:45:10] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:45:29.012156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:45:29.015815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:45:29] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:45:29] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:09.858638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:09.862072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:09.864238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:09.876065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:09.878070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:09.881069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:09.887061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:09.893074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:09] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:10] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:10] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:10.289276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:10] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:10] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:10] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:10.553433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:10] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:10] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:11.051311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:11.052321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:11.054308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:11.055325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:11.095530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:11.101522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:11.549816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:11.556833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:11.559834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:11.570231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:11.575248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:11.584248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:11.862047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:11.872590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:11.885385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:11.889888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:11.897513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:11.905359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:12.184916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:12.192783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:12.199159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:12.213047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:12.218079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:12.225034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:12.501644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:12.504635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:12.518637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:12.525631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:12.533632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:12.537635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:12.832870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:12.835858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:12.842856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:12.848852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:12.855852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:12.861878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.149046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.160072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:13.167072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.173620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.181623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.191909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.464110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.480660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.488654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.496660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:13.501662 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.508652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.776551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.791624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.800614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.809688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:13.818420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:13.819924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:14.091665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:14.098654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:14.109122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:14.118535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:46:14.132766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:46:14.133767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:46:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:16.062535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:16.066933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:16.071318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:16.074316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:16.080811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:16.086971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:16.091627 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:16.097650 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:16.305525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:16.309398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:16.313392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:16.319174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:16.325492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:16.331511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:16.337579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:16] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:16.357375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:16.361902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:16.379304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:16.411872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:16] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:16.430643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:17] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:17] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:17] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:17] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:29.339088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:29.342616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:29.345142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:29.350627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:29] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:29] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:29] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:29] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:30.302620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:30.308330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:30.313481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:30.319866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:30.323219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:30.329010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:30] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:30] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:30] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:30] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:30] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:30] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.342068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.345111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.348115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.350103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.357442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.361750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.366767 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.372767 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.525242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.529249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.532552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.536016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.541523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.550585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.566595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.574507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.582863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.586913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.590301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.595328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.608954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_Apprenant_Recorded_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_Given_Apprenant_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.623128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.628127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.632140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.652407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.657405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.667718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.675360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.690138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.696100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.698487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.725504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_Given_Apprenant_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_Apprenant_Recorded_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:47:51.734732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:47:51.740962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_Apprenant_List_Inscription/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:51] "POST /myclass/api/Get_Apprenant_List_Inscription/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:47:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:00.544891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:00.547940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:00.550904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:00.554983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:00] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:00] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:00] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:00] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:01.578439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:01.581685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:01.586554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:01.591564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:01.596576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:01.603404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:01] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:01] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:01] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:01] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:01] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:38.662767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:38.665769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:38.669308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:38.674307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:38.678155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:38.683378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:38.685378 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:38.699862 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:38.871172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:38.874312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:38.877336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:38.882155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:38.887177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:38.895055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:38.901051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:38.915053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:38.925222 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:38.938171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:38.973033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:38.990256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:43.085937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:43.089925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:43.092913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:43.097917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:43] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:43] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:43] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:43] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:48:44.273598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:44.277808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:44.282107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:44.286349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:44.291505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:48:44.298652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:44] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:44] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:44] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:48:44] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:49:16.276006 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:16.279439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:16.282687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:49:16.286688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:16.289720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:16.295747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:49:16.299762 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:49:16.308769 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:49:16.463347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:16.466380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:16.469974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:16.475247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:16.478743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:49:16.488381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:16.494186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:49:16.509748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:16] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:49:16.522598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:49:16.537529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:49:16.557480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:16] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:49:16.571864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:17] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:17] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:17] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:17] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:49:51.904061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:51.907097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:51.911378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:51.915378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:51] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:51] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:51] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:51] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:49:52.639899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:52.643985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:52.648280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:52.653785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:52.656871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:49:52.667358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:52] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:52] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:52] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:52] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:52] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:49:52] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:51:30.124782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:51:30.127541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:51:30.132014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:51:30.138342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:51:30.143068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:51:30.147103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:30] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:31] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:51:32.322350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:51:32.324709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:51:32.329070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:51:32.333991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:32] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:32] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:32] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:32] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:51:33.325098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:51:33.329496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:51:33.334065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:51:33.337535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:51:33.342554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:51:33.346727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:33] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:33] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:33] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:33] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:33] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:51:33] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:53:08.871888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:53:08.873924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:53:08.877380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:53:08.882392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:53:08.884602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:53:08.889642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:53:08.900707 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-07-31 10:53:08.900707 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:53:09.074322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:53:09.076360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:53:09.080856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:53:09.085362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:53:09.092395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:53:09.102446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:53:09.110027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:09] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:53:09.127180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:53:09.132185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:53:09.149332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:53:09.172000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:09] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:53:09.187455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:09] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:09] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:10] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:10] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:53:53.786468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:53] "POST /myclass/api/Inscription_Recyclage_Management_Done/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:53:54.030189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:53:54] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:54:50.501475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:54:50.505178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:54:50.509847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:54:50.512843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:54:50.517841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:54:50.519838 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-07-31 10:54:50.523846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:54:50.539528 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:54:50.753801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:54:50.755796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:54:50.759400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:54:50.763657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:54:50.770327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:54:50.780027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:54:50.789458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:50] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:54:50.801469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:54:50.810784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:54:50.826788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:54:50.863095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:50] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:54:50.886186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:51] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:51] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:54:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:55:26.634458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:55:26] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:55:36.850594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:55:36.853597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:55:36.857736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:55:36.861630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:55:36] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:55:36] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:55:36] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:55:36] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:55:38.146895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:55:38.149902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:55:38.156136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:55:38.157144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 10:55:38.163539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:55:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:55:38.173271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:55:38] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:55:38] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:55:38] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:55:38] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:55:38] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-07-31 10:56:21.252678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 10:56:21] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:57:55.530618 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:57:55.531648 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:57:55.531648 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:57:55.531648 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:57:55.531648 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 10:59:57.961244 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 10:59:57.961244 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 10:59:57.961244 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 10:59:57.961244 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 10:59:57.961244 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-31 11:00:01.208225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:00:01] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:00:03.913791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:00:03.918016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:00:03.921541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:00:03.926562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:00:03] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:00:03] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:00:03] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:00:03] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:00:05.143270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:00:05.147667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:00:05.152454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:00:05.156079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:00:05.161914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:00:05.171086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:00:05] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:00:05] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:00:05] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:00:05] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:00:05] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:00:05] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 11:01:00.385553 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 11:01:00.386553 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 11:01:00.386553 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 11:01:00.386553 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 11:01:00.386553 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-31 11:02:31.111858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:02:31.116489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:02:31] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:02:31] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 11:03:09.635779 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 11:03:09.635779 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 11:03:09.636779 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 11:03:09.636779 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 11:03:09.636779 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-31 11:05:05.067024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:05:05.069436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:05:05.072949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:05:05.074964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:05:05.080350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:05:05.083963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:05:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:05:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:05:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:05:05] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:05:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:05:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:09:23.768618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:23.773003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:23.781030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:23.793686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:23.794679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:23.805473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:23] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:23] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:23] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:09:31.503801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:31.508104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:09:31.513092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:31.517096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:31.523100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:31.526096 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-07-31 11:09:31.527098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:09:31.536455 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:09:31.706224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:31.709219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:31.711227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:31.716219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:31.720562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:31.725556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:09:31.737848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:31] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:09:31.756530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:31.758568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:09:31.778670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:09:31.805287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:31] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:09:31.822368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:32] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:32] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:32] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:32] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:09:36.106532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:36.109571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:36.112445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:36.116444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:36] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:36] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:36] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:36] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:09:36.892049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:36.896221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:36.900220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:36.904223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:36.909222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:09:36.915629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:36] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:36] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:36] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:36] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:36] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:09:36] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:14.072092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:14.075424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:14.079291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:14.083532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:14.091087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:14.098358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:14] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:21.791131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:21.793328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:21.797127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:21.801340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:21] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:21] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:21] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:21] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:28.599437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:28.602426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:28.605860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:28.610124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:28.614584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:28.617582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:28.630039 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:28.632398 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:28.806977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:28.808994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:28.811993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:28.815991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:28.820997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:28.828997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:28.836722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:28] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:28.847979 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:28.854422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:28.870597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:28.912389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:28] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:28.940646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:31.759263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:31.762717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:31.766710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:31.770714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:31] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:31] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:31] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:31] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:32.700717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:32.705007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:32.709101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:32.713804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:10:32.718844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:10:32.726830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:32] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:32] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:32] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:10:32] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:12:39.924951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:12:39.927955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:12:39.931950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:12:39.937046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:12:39] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:12:39] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:12:39] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:12:39] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:12:42.358288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:12:42.360834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:12:42.364012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:12:42.369032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:12:42] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:12:42] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:12:42] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:12:42] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:15:02.372362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:02.375928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:02.380018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:02.384453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:02.389436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:02.394830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:02] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:02] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:15:05.959324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:05.962506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:05.965829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:05.969130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:05] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:05] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:05] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:05] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:15:12.670310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:12.675310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:12.679302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:12.687308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:12] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:12] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:12] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:12] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 11:15:13.453935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:13.461198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:13.466475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:13.470708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:13.478821 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 11:15:13.483210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:13] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:13] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:13] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:13] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 11:15:13] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:11.148314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:11.154329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:11.164696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:11.179335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:11.188820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:11.200121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:11.207669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:11.216704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:11.233424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:11.235423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:11.251759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:11.259828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:11.268810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:11.280804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:11.291820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:11.303809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:11] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:24.442446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:24.446836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:24.453283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:24.463965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:24.466979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:24.475707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:24.487087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:24.499075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:24.515789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:24.525281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:24.529280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:24.539444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:24.546979 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:24.557977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:24.565687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:24.574486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:24.590080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:24.600742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:24.610620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:24.622372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:24.639574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:24.649706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:32.441200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:32.445067 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:32.450089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:32.455177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:32.467363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:32.474908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:32.479912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:32.485912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:32.491447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:32.501444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:35:32.517918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:35:32.523916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:33] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:33] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:35:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:36:09.779274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:36:09.782846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:36:09.786369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:36:09.792412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:36:09.793414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:36:09.802412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:36:09.810412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:36:09.817410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:36:09.828420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:36:09.839951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:36:09.848947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:36:09.859151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:36:09.860442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:36:09.870884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:36:09.873883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:36:09.881599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:09] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:36:28.348456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:36:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:38:26.433793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:38:26.437793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:38:26.443790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:38:26.446791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:38:26.451794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:38:26.457794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:38:26.465793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:38:26] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:38:26.477097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:38:26.486586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:38:26.495565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:38:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:38:26] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:38:26] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:38:26.510176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:38:26.520829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:38:26] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:38:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:38:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:38:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:38:27] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:38:27] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:38:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:38:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:41:18.710516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:41:18.715757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:41:18] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:41:18] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:41:44.162533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:41:44] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:42:21.882841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:42:21.888373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:42:21] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:42:21] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:42:38.119794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:42:38.126815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:42:38] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:42:38] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:45:57.639223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:45:57.645145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:45:57] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:45:57] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:46:32.318283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:46:32.325559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:32] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:32] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:46:46.178858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:46:46.184864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:46:46.189855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:46:46.192857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:46:46.197857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:46:46.203861 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:46:46.211928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:46:46.222273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:46:46.235266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:46:46.250176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:46:46.254157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:46:46.265017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:46:46.269020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:46:46.281534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:46:46.285534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:46:46.294011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:46:46.311111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:46:46.325302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:46] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:47] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:46:47] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:47:11.887208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:47:11.895238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:47:11] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:47:11] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:47:34.369296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:47:34.373040 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:47:34.376271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:47:34.380768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:47:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:47:34.389747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:47:34.399151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:47:34.407980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:47:34.414422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:47:34.420464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:47:34.428434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:47:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:47:34.440561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:47:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:47:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:47:34.456533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:47:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:47:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:47:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:47:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:47:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:47:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:47:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:47:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:48:15.179955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:15] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:48:33.438780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:33.442196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:33.446220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:33.447231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:33.450938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:33.456336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:33.460878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:33.466899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:33.473891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:48:33.531817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:33.536110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:33.541132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:33.545208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:33.550213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:33.558746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:48:33.562746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:33.570745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:48:33.578738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:33] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:48:38.852021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:38] "POST /myclass/api/Get_Apprenant_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:48:53.332987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:53] "POST /myclass/api/Get_Apprenant_Recorded_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:48:54.487098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:54.490475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:54.494508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:54.502172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:48:54.510044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:54] "POST /myclass/api/Get_Given_Apprenant_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:54] "POST /myclass/api/Get_Apprenant_Recorded_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:54] "POST /myclass/api/Get_List_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:48:54] "POST /myclass/api/Get_Apprenant_List_Inscription/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:49:08.701542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:49:08.707015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:49:08] "POST /myclass/api/get_Agenda_Event_List_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:49:08] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:49:08.733159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:49:08.736151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:49:08] "POST /myclass/api/get_Agenda_Event_List_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:49:08] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:51:45.899329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:51:46] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:52:14.552829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:52:14] "POST /myclass/api/Inscription_Recyclage_Management_Done/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:52:14.687505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:52:15] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:53:26.556931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:53:26.559931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:53:26.565943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:53:26.570932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:53:26.575027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:53:26.585033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:53:26.585033 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-07-31 12:53:26.589461 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:26] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:26] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:53:26.761613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:53:26.765631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:53:26.770378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:53:26.773395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:53:26.777392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:53:26.784414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:26] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:53:26.795455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:26] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:53:26.810511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:53:26.812510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:26] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:53:26.832041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:53:26.857304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:26] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:53:26.874833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:27] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:27] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:53:48.723969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:48] "POST /myclass/api/Get_List_Partner_Produit_Service/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:53:48.740161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:53:48] "POST /myclass/api/Get_List_Partner_Produit_Service/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:55:28.669306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:55:28] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:55:28.687506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:55:28] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:55:31.467877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:55:31.470366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 12:55:31.475733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:55:31] "POST /myclass/api/Get_Qery_List_Taux_Remplissage_Session_Data_V2/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:55:31] "POST /myclass/api/Get_Qery_Session_By_Periode_V2/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:55:33.146063 : Get_Qery_Inscription_By_Session_By_Periode -PlanExecutor error during aggregation :: caused by :: Error parsing date string ''; 0: Data missing '', full error: {'ok': 0.0, 'errmsg': "PlanExecutor error during aggregation :: caused by :: Error parsing date string ''; 0: Data missing '\x00'", 'code': 241, 'codeName': 'ConversionFailure'} - Line : 541 +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:55:33] "POST /myclass/api/Get_Qery_Inscription_By_Session_By_Periode/ HTTP/1.1" 200 - +INFO:root:2024-07-31 12:56:26.548329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 12:56:26] "POST /myclass/api/Get_Qery_Session_By_Periode_V2/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:34:38.139346 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 16:34:38.140343 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 16:34:38.141335 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 16:34:38.141335 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 16:34:38.141335 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 16:35:00.498584 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 16:35:00.498584 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 16:35:00.498584 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 16:35:00.499622 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 16:35:00.499622 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-31 16:36:07.933786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:07.936805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:07.939011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:07.942064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:07.944065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:07.947110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:07.950131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:07.951543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:08.009709 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:08.446025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:08.872782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:08.876871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:08.882881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:08.888268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:08.894264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:08.899881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:08.920052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:08.923654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:08.928912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:08.934916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:08.947400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:08.952746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:08.962080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:08.967586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:08.973944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:08.980448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:08.984231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:08.988322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.000061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.011825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.019918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.026684 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.033784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.042952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.047973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.052454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.062653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.067393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.070410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.080912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.089240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.098861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.103881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.113883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.124552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.128574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.132573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.141668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.157548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.163543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.179066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.188449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.193575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.203645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.208428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.215860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.224861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.235395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.243387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.254388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.256391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.262925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.274285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.276653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.281819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.289661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.298977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.308403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:09.319404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:09.323406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:12.725103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:12] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:13.032008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:13.037011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:13.043636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:13.052650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:13.062477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:13.068108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:13.074240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:13.089244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:13.098445 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:13.102534 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:13.269743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:13.274825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:13.280440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:13.288214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:13.298849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:13.309951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:13.323063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:13.347883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:13.363877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:13.373120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:13] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:19.281763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:19.302913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:19] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:19] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:25.125563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:25.131572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:36:25.136569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:25] "POST /myclass/api/Get_Qery_List_Taux_Remplissage_Session_Data_V2/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:25] "POST /myclass/api/Get_Qery_Session_By_Periode_V2/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:36:27.359870 : Get_Qery_Inscription_By_Session_By_Periode -PlanExecutor error during aggregation :: caused by :: Error parsing date string ''; 0: Data missing '', full error: {'ok': 0.0, 'errmsg': "PlanExecutor error during aggregation :: caused by :: Error parsing date string ''; 0: Data missing '\x00'", 'code': 241, 'codeName': 'ConversionFailure'} - Line : 541 +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:36:27] "POST /myclass/api/Get_Qery_Inscription_By_Session_By_Periode/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Dashbord_queries\\inscription_tdb_qries.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 16:41:38.312527 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 16:41:38.312527 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 16:41:38.313535 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 16:41:38.313535 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 16:41:38.313535 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Dashbord_queries\\inscription_tdb_qries.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 16:42:02.633584 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 16:42:02.633584 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 16:42:02.633584 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 16:42:02.633584 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 16:42:02.633584 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-31 16:42:40.537574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:42:40.541609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:42:40.544607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:42:40.549537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:42:40.553533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:42:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:42:40.562471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:42:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:42:40.572732 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:42:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:42:40.580049 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:42:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:42:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:42:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:42:40.747052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:42:40.756086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:42:40] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:42:40] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:42:42.279884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:42:42.287876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:42:42.295625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:42:42] "POST /myclass/api/Get_Qery_List_Taux_Remplissage_Session_Data_V2/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:42:42] "POST /myclass/api/Get_Qery_Session_By_Periode_V2/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:42:42] "POST /myclass/api/Get_Qery_Inscription_By_Session_By_Periode/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:42:46.096763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:42:47.388864 : Get_Qery_Inscription_Group_By_Class -PlanExecutor error during aggregation :: caused by :: Error parsing date string ''; 0: Data missing '', full error: {'ok': 0.0, 'errmsg': "PlanExecutor error during aggregation :: caused by :: Error parsing date string ''; 0: Data missing '\x00'", 'code': 241, 'codeName': 'ConversionFailure'} - Line : 1103 +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:42:47] "POST /myclass/api/Get_Qery_Inscription_Group_By_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:42:57.574109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:42:57.863548 : Get_Qery_Inscription_Group_By_Class -PlanExecutor error during aggregation :: caused by :: Error parsing date string ''; 0: Data missing '', full error: {'ok': 0.0, 'errmsg': "PlanExecutor error during aggregation :: caused by :: Error parsing date string ''; 0: Data missing '\x00'", 'code': 241, 'codeName': 'ConversionFailure'} - Line : 1103 +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:42:57] "POST /myclass/api/Get_Qery_Inscription_Group_By_Class/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Dashbord_queries\\inscription_tdb_qries.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 16:43:58.226224 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 16:43:58.226224 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 16:43:58.226224 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 16:43:58.226224 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 16:43:58.226224 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Dashbord_queries\\inscription_tdb_qries.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 16:44:26.306548 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 16:44:26.306548 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 16:44:26.306548 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 16:44:26.306548 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 16:44:26.306548 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Dashbord_queries\\inscription_tdb_qries.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 16:45:01.362301 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 16:45:01.362301 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 16:45:01.362301 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 16:45:01.362301 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 16:45:01.362301 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-31 16:45:01.436610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:45:01] "POST /myclass/api/Get_Qery_Inscription_By_Session_By_Periode/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:45:09.506500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:45:09] "POST /myclass/api/Get_Qery_Inscription_Group_By_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:45:11.090915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:45:11] "POST /myclass/api/Get_Qery_Inscription_Group_By_Session/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:45:12.094115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:45:13.375517 : Get_Qery_Inscription_By_Session_By_Periode_cumule -PlanExecutor error during aggregation :: caused by :: Error parsing date string ''; 0: Data missing '', full error: {'ok': 0.0, 'errmsg': "PlanExecutor error during aggregation :: caused by :: Error parsing date string ''; 0: Data missing '\x00'", 'code': 241, 'codeName': 'ConversionFailure'} - Line : 819 +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:45:13] "POST /myclass/api/Get_Qery_Inscription_By_Session_By_Periode_cumule/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Dashbord_queries\\inscription_tdb_qries.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 16:45:46.001178 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 16:45:46.001178 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 16:45:46.001178 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 16:45:46.001178 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 16:45:46.001178 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Dashbord_queries\\inscription_tdb_qries.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 16:46:18.757754 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 16:46:18.757754 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 16:46:18.757754 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 16:46:18.757754 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 16:46:18.758749 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-31 16:46:18.918835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:46:19] "POST /myclass/api/Get_Qery_Inscription_Group_By_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:46:45.863914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:46:46] "POST /myclass/api/Get_Qery_Inscription_By_Session_By_Periode_cumule/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:46:49.072546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:46:49] "POST /myclass/api/Get_Qery_Session_By_Periode_V2/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:46:50.848970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:46:50] "POST /myclass/api/Get_Qery_Session_By_Formation_V2/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:46:56.776398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:46:56] "POST /myclass/api/Get_Qery_Session_By_Periode_Cumule_V2/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:47:01.728431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:47:01.734192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:47:01.740760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:47:01] "POST /myclass/api/Get_Qery_List_Quotation_Data_By_Periode/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:47:01] "POST /myclass/api/Get_Qery_List_Facture_Previsionnelle_Data_By_Periode/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:47:01] "POST /myclass/api/Get_Qery_List_Factures_Data_By_Periode/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:47:03.025030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:47:03] "POST /myclass/api/Get_Qery_List_Factures_Data_By_Periode/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:47:04.355609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:47:04] "POST /myclass/api/Get_Qery_List_Factures_Data_By_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:47:05.718000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:47:05] "POST /myclass/api/Get_Qery_List_Factures_Data_By_Client_V2/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:47:07.379514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:47:07] "POST /myclass/api/Get_Qery_List_Factures_Data_By_Periode/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:47:16.729710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:47:16] "POST /myclass/api/Get_Qery_List_Factures_Data_By_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:47:21.121461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:47:21] "POST /myclass/api/Get_Qery_List_Factures_Data_By_Client_V2/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Dashbord_queries\\factures_tbd_qries.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 16:48:33.553008 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 16:48:33.554006 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 16:48:33.554006 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 16:48:33.554006 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 16:48:33.554006 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-31 16:48:33.629227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:48:33] "POST /myclass/api/Get_Qery_List_Factures_Data_By_Periode/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:48:35.946678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:48:35] "POST /myclass/api/Get_Qery_List_Factures_Data_By_Client_V2/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:48:37.174399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:48:37] "POST /myclass/api/Get_Qery_List_Factures_Data_By_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:48:38.643580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:48:38] "POST /myclass/api/Get_Qery_List_Factures_Data_By_Periode/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:51:29.230516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:29.237193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:29.242545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:29.249012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:29.260580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:29.272348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:29.285981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:51:29.297341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:29.312529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:29.330726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:51:29.358538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:29.373770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:30] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:30] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:51:33.586108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:33.590140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:33.597124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:33.609019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:33] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:33] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:33] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:33] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:51:34.496470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:34.504839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:34.510552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:34.521259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:34.528614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:51:34.535922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:34] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:34] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:34] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:34] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:51:34] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:53:12.003259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:53:12.007778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:53:12.012795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:53:12.021788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:12] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:12] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:12] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:12] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:53:12.963558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:53:12.970778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:53:12.976771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:53:12.982749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:53:12.994450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:13] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:53:13.016760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:13] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:13] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:13] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:13] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:53:14.300440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:53:14.305762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:53:14.309782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:53:14.314970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:53:14.321292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:53:14.327497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:15] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:53:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:54:03.713249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:54:03.718735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:54:03.725567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:54:03.732009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:54:03] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:54:03] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:54:03] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:54:03] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:54:04.893675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:54:04.901218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:54:04.907792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:54:04.914696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:54:04.917771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:54:04.929462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:54:04] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:54:04] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:54:04] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:54:04] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:54:04] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:54:04] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:55:27.170564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:55:27.177634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:55:27.184190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:55:27.193574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:55:27] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:55:27] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:55:27] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:55:27] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 16:59:39.862255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:59:39.866578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:59:39.870409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:59:39.876871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:59:39.887271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 16:59:39.896889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:59:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:59:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:59:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:59:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:59:40] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 16:59:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:01:05.171868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:05.176696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:05.180786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:01:05.188332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:05.194255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:05.196393 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-07-31 17:01:05.198409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:01:05.217279 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:01:05.459564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:05.463520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:05.467567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:05.471672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:05.476537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:01:05.486776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:05.494915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:05] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:01:05.512915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:05.516060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:01:05.535462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:01:05.569658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:05] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:01:05.592789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:06] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:06] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:01:10.991748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:10.996734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:11.003739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:11.012228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:11] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:11] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:11] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:11] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:01:12.871451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:12.881879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:12.888261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:12.896607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:12.914591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:12] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:01:12.929591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:12] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:12] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:12] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:12] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:12] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:01:40.245699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:40.250215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:40.255794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:40.262847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:40] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:40] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:40] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:40] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:01:46.237960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:46.245628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:46.252322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:46.260889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:46.272951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:01:46.280772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:46] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:46] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:46] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:46] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:46] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:01:46] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-07-31 17:03:27.632221 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-07-31 17:03:27.633215 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-07-31 17:03:27.633215 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-07-31 17:03:27.633215 : ++ FLASK PORT 5001 ++ +INFO:root:2024-07-31 17:03:27.633215 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-07-31 17:03:27.706017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:03:27.709783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:03:27.714519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:03:27.719031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:03:27.724348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:03:27.732608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:03:27.740155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:03:27] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:03:27.750802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:03:27] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:03:27] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:03:27.779624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:03:27] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:03:27.792243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:03:27] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:03:27] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:03:27] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:03:27] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:03:27] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:03:27] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:03:51.336509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:03:51.341905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:03:51] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:03:51] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:04:07.870429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:07.875798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:07.880795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:07.887832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:07] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:07] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:07] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:07] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:04:09.292168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:09.299224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:09.307329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:09.316145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:09.319149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:09.342596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:09] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:09] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:09] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:09] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:09] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:09] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:04:38.109882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:38.113487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:38.117598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:38.124919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:38] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:38] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:38] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:38] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:04:39.263145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:39.269166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:39.275030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:39.281043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:39.287502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:04:39.301509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:39] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:39] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:39] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:39] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:04:46.863981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:46.869854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:46.924869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:46.931855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:46.944383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:04:46.957419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:46] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:48] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:04:49.383194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:49.387747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:49.391397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:49.398143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:49] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:49] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:49] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:49] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:04:50.782095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:50.789102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:50.794826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:04:50.803988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:50] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:04:50.814990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:50] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:04:50.821446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:50] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:04:50] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:05:01.192282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:01.198732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:01.201729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:01.213811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:01] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:01] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:01] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:01] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:05:02.763832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:02.769014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:02.776982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:02.783619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:02.791521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:02] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:02] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:05:02.804332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:02] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:02] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:02] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:05:10.078557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:10.084746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:10.087751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:10.094750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:10] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:10] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:10] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:10] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:05:11.642975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:11.650564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:11.656083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:11.663545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:11.668781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:11.675367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:11] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:11] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:11] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:11] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:05:19.527862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:19.533321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:19.538244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:19.542236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:19] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:19] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:19] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:19] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:05:20.541177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:20.546400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:20.552663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:20.559658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:20.568668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:20] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:05:20.582002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:20] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:20] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:20] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:20] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:05:30.542188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:30.549837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:30] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:30] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:05:34.726308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:34.732001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:34.737323 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:34.744160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:34] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:34] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:34] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:34] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:05:36.334565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:36.339948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:36.344980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:36.354268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:36.362071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:36] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:05:36.374758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:36] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:36] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:36] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:36] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:36] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:05:50.852188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:50.854188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:50.857274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:50.858273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:50] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:50] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:51] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:51] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:05:52.623129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:52.628151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:52.633194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:52.636819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:52.644084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:05:52.653792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:52] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:52] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:52] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:52] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:52] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:05:52] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:00.659841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:00.666383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:00.672627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:00.682182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:00] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:00] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:00] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:00] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:02.225309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:02.231636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:02.237350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:02.243320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:02.248401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:02.257925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:02] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:02] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:02] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:02] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:02] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:19.521010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:19.526348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:19.533212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:19.541954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:19] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:19] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:19] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:19] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:20.924736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:20.937536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:20.947426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:20.954280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:20.959906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:20] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:20.971526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:20] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:21] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:21] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:21] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:27.690944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:27.696943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:27.699944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:27.706489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:27] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:27] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:27] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:27] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:29.077626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:29.082729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:29.088548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:29.091585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:29.100601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:29.110143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:29] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:29] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:29] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:37.644394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:37.653854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:37] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:37] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.122119 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.127155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.132848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.135860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.142675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.149811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.154405 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.165955 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.386291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.391506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.397789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.404284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.414296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.425831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.442499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.450631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.457050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.466080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.470578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.485826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.490006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_Given_Apprenant_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_Apprenant_Recorded_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.509283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.513529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.521153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.545159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.552773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.558153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.570226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.582571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.593066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.600112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_Given_Apprenant_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_Apprenant_Recorded_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:06:48.647547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.652522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:06:48.662247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_Apprenant_List_Inscription/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:48] "POST /myclass/api/Get_Apprenant_List_Inscription/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:06:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:07:11.187185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:07:11.195022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:07:11] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:07:11] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:07:49.682108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:07:49.697829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:07:49] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:07:49] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:08:34.179787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:08:34.185324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:08:34.191321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:08:34.200323 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:08:34.207332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:08:34.229326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:08:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:08:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:08:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:08:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:08:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:08:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:08:38.249685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:08:38.257711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:08:38] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:08:38] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:14:52.765927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:14:52] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:20:51.465598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:20:51] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:21:16.247743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:21:16] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:21:41.101730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:21:41] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:22:01.633012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:22:01] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:24:01.812278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:24:01] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:28:58.051294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:28:58.066979 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:28:58] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:28:58] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:29:08.419879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:29:08] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:29:32.600854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:29:32] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:33:10.504449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:10] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:33:23.211894 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:33:23.220279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:33:23.227660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:23] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:33:23.240530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:33:23.250169 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:23] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:33:23.259725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:33:23.259725 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:23] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:33:23.275799 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:23] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:33:23.477156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:33:23.483795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:33:23.490999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:33:23.497536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:33:23.509541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:33:23.512558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:23] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:33:23.533990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:23] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:33:23.552452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:33:23.557714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:23] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:33:23.574213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:33:23.638895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:23] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:33:23.661023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:24] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:24] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:33:33.777053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:33:33.789049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:33] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:33] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-07-31 17:33:47.735611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-07-31 17:33:47.742386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:47] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jul/2024 17:33:47] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - diff --git a/class_mgt.py b/class_mgt.py index 1be15a5..5dfcf85 100644 --- a/class_mgt.py +++ b/class_mgt.py @@ -59,7 +59,7 @@ def add_class(diction): 'programme', 'prerequis', 'note', 'cpf', 'certif', 'class_inscription_url', 'pourqui', 'support', 'img_banner_detail_class', 'source', 'lms_class_code', 'formateur_id', 'class_level', 'methode_pedagogique', 'condition_handicape', 'suivi_eval', 'class_id', - 'version', 'categorie', 'recyclage_delai', 'recyclage_periodicite'] + 'version', 'categorie', 'recyclage_delai', 'recyclage_periodicite', 'recyclage_alert'] incom_keys = diction.keys() for val in incom_keys: @@ -232,6 +232,22 @@ def add_class(diction): mydata['recyclage_delai'] = str(recyclage_delai) + + recyclage_alert = "" + if ("recyclage_alert" in diction.keys()): + if diction['recyclage_alert']: + recyclage_alert = diction['recyclage_alert'] + local_status, local_retval = mycommon.IsInt(str(recyclage_alert)) + if( local_status is False ): + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " Le delai d'alerte de recyclage n'est pas valide ") + return False, " Le delai d'alerte de recyclage n'est pas valide ", False + recyclage_alert = local_retval + + mydata['recyclage_alert'] = str(recyclage_alert) + + recyclage_periodicite = "" if ("recyclage_periodicite" in diction.keys()): if diction['recyclage_periodicite']: @@ -741,7 +757,7 @@ def update_class(diction): 'cpf', 'certif', 'class_inscription_url','pourqui', 'support', 'img_banner_detail_class', 'duration_unit', 'source', 'lms_class_code', 'formateur_id', 'class_level','methode_pedagogique', 'condition_handicape', 'suivi_eval', 'class_id', 'version', 'categorie', 'recyclage_delai', - 'recyclage_periodicite'] + 'recyclage_periodicite', 'recyclage_alert'] incom_keys = diction.keys() for val in incom_keys: @@ -832,6 +848,20 @@ def update_class(diction): mydata['recyclage_delai'] = str(recyclage_delai) + if ("recyclage_alert" in diction.keys()): + recyclage_alert = "" + if diction['recyclage_alert']: + recyclage_alert = diction['recyclage_alert'] + local_status, local_retval = mycommon.IsInt(str(recyclage_alert)) + if (local_status is False): + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " Le delai d'alerte de recyclage n'est pas valide ") + return False, " Le delai d'alerte de recyclage n'est pas valide ", False + recyclage_alert = local_retval + + mydata['recyclage_alert'] = str(recyclage_alert) + if ("recyclage_periodicite" in diction.keys()): recyclage_periodicite = "" @@ -2274,6 +2304,9 @@ def get_class(diction): if( "recyclage_delai" not in user.keys()): user['recyclage_delai'] = "" + if ("recyclage_alert" not in user.keys()): + user['recyclage_alert'] = "" + if ("recyclage_periodicite" not in user.keys()): user['recyclage_periodicite'] = "" @@ -2385,6 +2418,9 @@ def get_class_coup_de_coeur(diction): if ("recyclage_delai" not in user.keys()): user['recyclage_delai'] = "" + if ("recyclage_alert" not in user.keys()): + user['recyclage_alert'] = "" + if ("recyclage_periodicite" not in user.keys()): user['recyclage_periodicite'] = "" @@ -2605,6 +2641,9 @@ def get_partner_class(diction): if ("recyclage_delai" not in retVal.keys()): retVal['recyclage_delai'] = "" + if ("recyclage_alert" not in retVal.keys()): + retVal['recyclage_alert'] = "" + if ("recyclage_periodicite" not in retVal.keys()): retVal['recyclage_periodicite'] = "" @@ -2888,6 +2927,10 @@ def find_partner_class_like(diction): retVal['recyclage_delai'] = "" + if ("recyclage_alert" not in retVal.keys()): + retVal['recyclage_alert'] = "" + + if ("recyclage_periodicite" not in retVal.keys()): retVal['recyclage_periodicite'] = "" @@ -3150,6 +3193,9 @@ def get_partner_class_external_code(diction): if ("recyclage_delai" not in user.keys()): user['recyclage_delai'] = "" + if ("recyclage_alert" not in user.keys()): + user['recyclage_alert'] = "" + if ("recyclage_periodicite" not in user.keys()): user['recyclage_periodicite'] = "" @@ -3306,7 +3352,8 @@ def add_class_mass(file=None, Folder=None, diction=None): 'mots_cle', 'zone_diffusion', 'metier', 'publie', 'img_url', 'objectif', 'programme', 'prerequis', 'formateur', 'note', 'cpf', 'certif', 'class_inscription_url', 'pourqui', 'support', 'img_banner_detail_class', 'formateur_email', - 'methode_pedagogique', 'condition_handicape', 'suivi_eval', 'version', 'categorie', 'recyclage_delai', 'recyclage_periodicite'] + 'methode_pedagogique', 'condition_handicape', 'suivi_eval', 'version', 'categorie', 'recyclage_delai', + 'recyclage_periodicite' 'recyclage_alert'] total_rows = len(df) @@ -3486,6 +3533,23 @@ def add_class_mass(file=None, Folder=None, diction=None): mydata['recyclage_delai'] = str(recyclage_delai) + recyclage_alert = "" + if ("recyclage_alert" in diction.keys()): + if diction['recyclage_alert']: + recyclage_alert = diction['recyclage_alert'] + local_status, local_retval = mycommon.IsInt(str(recyclage_alert)) + if (local_status is False): + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " Le delai d'alerte de recyclage n'est pas valide ") + return False, " Le delai d'alerte de recyclage n'est pas valide " + recyclage_alert = local_retval + + mydata['recyclage_alert'] = str(recyclage_alert) + + + + recyclage_periodicite = "" if ("recyclage_periodicite" in diction.keys()): if diction['recyclage_periodicite']: @@ -3824,7 +3888,8 @@ def Controle_add_class_mass(saved_file=None, Folder=None, diction=None): 'mots_cle', 'zone_diffusion', 'metier', 'publie', 'img_url', 'objectif', 'programme', 'prerequis', 'formateur', 'note', 'cpf', 'certif', 'class_inscription_url', 'pourqui', 'support', 'img_banner_detail_class', 'formateur_email' ,'methode_pedagogique', - 'condition_handicape', 'suivi_eval', 'version', 'categorie', 'recyclage_delai', 'recyclage_periodicite'] + 'condition_handicape', 'suivi_eval', 'version', 'categorie', 'recyclage_delai', + 'recyclage_periodicite', 'recyclage_alert'] total_rows = len(df) @@ -3988,6 +4053,24 @@ def Controle_add_class_mass(saved_file=None, Folder=None, diction=None): mydata['recyclage_delai'] = str(recyclage_delai) + recyclage_alert = "" + if ("recyclage_alert" in diction.keys()): + if diction['recyclage_alert']: + recyclage_alert = diction['recyclage_alert'] + local_status, local_retval = mycommon.IsInt(str(recyclage_alert)) + if (local_status is False): + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " Le delai d'alerte de recyclage n'est pas valide pour la formation à la ligne " + str( + n + 2) + " .") + return False, " Le delai d'alerte de recyclage n'est pas valide pour la formation à la ligne " + str( + n + 2) + " ." + recyclage_alert = local_retval + + mydata['recyclage_alert'] = str(recyclage_alert) + + + recyclage_periodicite = "" if ("recyclage_periodicite" in diction.keys()): if diction['recyclage_periodicite']: @@ -4379,6 +4462,9 @@ def get_class_by_metier(diction): if ("recyclage_delai" not in user.keys()): user['recyclage_delai'] = "" + if ("recyclage_alert" not in user.keys()): + user['recyclage_alert'] = "" + if ("recyclage_periodicite" not in user.keys()): user['recyclage_periodicite'] = "" @@ -5119,6 +5205,9 @@ def get_Class_From_Internal_Url(diction): if ("recyclage_delai" not in user.keys()): user['recyclage_delai'] = "" + if ("recyclage_alert" not in user.keys()): + user['recyclage_alert'] = "" + if ("recyclage_periodicite" not in user.keys()): user['recyclage_periodicite'] = "" val_tmp = val_tmp + 1 @@ -5187,6 +5276,9 @@ def get_Class_From_Url(diction): if ("recyclage_delai" not in user.keys()): user['recyclage_delai'] = "" + if ("recyclage_alert" not in user.keys()): + user['recyclage_alert'] = "" + if ("recyclage_periodicite" not in user.keys()): user['recyclage_periodicite'] = "" user['id'] = str(val_tmp) diff --git a/main.py b/main.py index 6334de0..aa6b18c 100644 --- a/main.py +++ b/main.py @@ -351,7 +351,7 @@ def update_user_account(): def create_class(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) - print(" ### payload = ",payload) + print(" ### create_class payload = ",payload) status, retval, class_id = cm.add_class(payload) return jsonify(status=status, message=retval, class_id=class_id) @@ -463,7 +463,7 @@ def update_class(): payload = mycommon.strip_dictionary (request.form.to_dict()) print(" ### update_class payload = ",payload) status, retval, class_id = cm.update_class(payload) - print(" ### class_id = ", class_id) + return jsonify(status=status, message=retval, class_id=class_id) @@ -4557,7 +4557,7 @@ API qui recupere la liste complete des stagaire d'un partener def Get_Statgaire_List_Partner_with_filter(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) - print(" ### Get_Statgaire_List_Partner payload = ",payload) + print(" ### Get_Statgaire_List_Partner_with_filter payload = ",payload) status, retval = inscription.Get_Statgaire_List_Partner_with_filter(payload) return jsonify(status=status, message=retval) diff --git a/prj_common.py b/prj_common.py index a309b40..347157a 100644 --- a/prj_common.py +++ b/prj_common.py @@ -3161,7 +3161,7 @@ def GetAttendeeDetail_perSession(diction): ]) - print(" ### GetAttendeeDetail_perSession ici pipe_qry = ",pipe_qry) + #print(" ### GetAttendeeDetail_perSession ici pipe_qry = ",pipe_qry) # Recuperation des infos de la formation """local_Insc_retval = MYSY_GV.dbname['inscription'].find_one({'session_id':str(diction['session_id']), 'email':str(diction['attendee_email']), @@ -3171,7 +3171,7 @@ def GetAttendeeDetail_perSession(diction): for local_Insc_retval in MYSY_GV.dbname['inscription'].aggregate(pipe_qry) : - print(" ### local_Insc_retval laa== ", local_Insc_retval) + #print(" ### local_Insc_retval laa== ", local_Insc_retval) if( local_Insc_retval is None): myprint(str(inspect.stack()[0][3]) + " - Impossible de récupérer le recid du partenaire (2)") @@ -3514,7 +3514,7 @@ def GetAttendeeDetail_perSession(diction): S'il y a de la data dans la collection 'apprenant_collection' cela veut dire qu'il y a un dossier apprenant, alors on va plutot retourner les info qui sont dans cette collection """ - + """ if ('apprenant_collection' in local_Insc_retval.keys() and len( local_Insc_retval['apprenant_collection']) > 0): print(" ### apprenant_collection = ", str(local_Insc_retval['apprenant_collection'][0]) ) if ("civilite" in local_Insc_retval['apprenant_collection'][0].keys()): @@ -3697,7 +3697,7 @@ def GetAttendeeDetail_perSession(diction): else: my_retrun_dict['tuteur2_include_com'] = "" - + """ RetObject.append(JSONEncoder().encode(my_retrun_dict)) return True, RetObject