diff --git a/.idea/workspace.xml b/.idea/workspace.xml index e5cd3b9..fac866b 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,19 +1,18 @@ - + + + - - + - + - - - + @@ -469,7 +468,6 @@ - @@ -494,6 +492,7 @@ - \ No newline at end of file diff --git a/E_Sign_Document.py b/E_Sign_Document.py index 5ce027c..b1078b0 100644 --- a/E_Sign_Document.py +++ b/E_Sign_Document.py @@ -199,7 +199,7 @@ def Create_E_Document(diction): new_diction['file_cononical_name'] = cononic_name - print(" ### new_diction aaa = ", new_diction) + #print(" ### new_diction aaa = ", new_diction) val = MYSY_GV.dbname['e_document_signe'].insert_one(new_diction) @@ -764,7 +764,7 @@ def Create_E_Signature_For_E_Document(file_img=None, Folder=None, diction=None): if (str(diction['email_destinataire']) in tab_list_email): my_str = str(e_document_data['document_data']) document_data_as_bytes = str.encode(my_str) - print(type(document_data_as_bytes)) # ensure it is byte representation + #print(type(document_data_as_bytes)) # ensure it is byte representation message = document_data_as_bytes msg = SignedMessage(message=message) @@ -967,7 +967,7 @@ def Create_E_Signature_For_E_Document(file_img=None, Folder=None, diction=None): ts = str(ts).replace(".", "").replace(",", "")[-2:] if (str(e_docment_type).strip() != ""): - orig_file_name = str(e_docment_type).strip()+"_Signe_" + str(todays_date)+"_"+str(ts) + ".pdf" + orig_file_name = str(e_docment_type).strip().capitalize()+"_Signe_" + str(todays_date)+"_"+str(ts) + ".pdf" else: orig_file_name = "Document_Signe_" + str(todays_date)+"_"+str(ts) + ".pdf" @@ -1217,7 +1217,7 @@ def Create_E_Signature_For_E_Document(file_img=None, Folder=None, diction=None): """ quotation_client_data = None reference_document = "" - type_document = "" + type_document = str(e_docment_type) if(e_document_date_2['type'] == "quotation" ): qry = {'partner_owner_recid':local_partner_owner_recid, '_id':ObjectId(str(e_document_date_2['related_collection_id'])), @@ -1274,8 +1274,10 @@ def Create_E_Signature_For_E_Document(file_img=None, Folder=None, diction=None): new_file = {} new_file['token'] = temp_admin_account['token'] - if (type_document == "Devis" and reference_document): + if (type_document and reference_document): new_file['file_business_object'] = "e_"+str(type_document)+"_"+str(reference_document)+"_signe_" + str(todays_date)+"_"+str(ts) + elif ( type_document ): + new_file['file_business_object'] = "e_" + str(type_document) + "_signe_" + str(todays_date) + "_" + str(ts) else: new_file['file_business_object'] = "e_Document_signe_" + str(todays_date)+"_"+str(ts) @@ -1304,7 +1306,7 @@ def Create_E_Signature_For_E_Document(file_img=None, Folder=None, diction=None): et on valide le devis. on le met à 'gagné' """ - if (str(e_docment_type).strip() == "quotation"): + if (str(e_docment_type).strip().lower() == "quotation"): """ mettre le devis à gagné @@ -1640,7 +1642,7 @@ def Create_E_Signature_For_E_Invoice(file_img=None, Folder=None, diction=None): ts = str(ts).replace(".", "").replace(",", "")[-2:] if (str(e_docment_type).strip() != ""): - orig_file_name = str(e_docment_type).strip() + "_Signe_" + str(todays_date) + "_" + str(ts) + ".pdf" + orig_file_name = str(e_docment_type).strip().capitalize() + "_Signe_" + str(todays_date) + "_" + str(ts) + ".pdf" else: orig_file_name = "Document_Signe_" + str(todays_date) + "_" + str(ts) + ".pdf" @@ -1793,7 +1795,7 @@ def Create_E_Signature_For_E_Invoice(file_img=None, Folder=None, diction=None): """ quotation_client_data = None reference_document = "" - type_document = "" + type_document = str(e_docment_type) if (e_document_date_2['type'] == "quotation"): qry = {'partner_owner_recid': local_partner_owner_recid, '_id': ObjectId(str(e_document_date_2['related_collection_id'])), @@ -1846,9 +1848,11 @@ def Create_E_Signature_For_E_Invoice(file_img=None, Folder=None, diction=None): new_file = {} new_file['token'] = temp_admin_account['token'] - if (type_document == "Devis" and reference_document): + if (type_document and reference_document): new_file['file_business_object'] = "e_" + str(type_document) + "_" + str( reference_document) + "_signe_" + str(todays_date) + "_" + str(ts) + elif (type_document): + new_file['file_business_object'] = "e_" + str(type_document) + "_signe_" + str(todays_date) + "_" + str(ts) else: new_file['file_business_object'] = "e_Document_signe_" + str(todays_date) + "_" + str(ts) @@ -1876,7 +1880,7 @@ def Create_E_Signature_For_E_Invoice(file_img=None, Folder=None, diction=None): Si il s'agit d'un devis, alors on procede a la resevation des places """ - if (str(e_docment_type).strip() == "quotation"): + if (str(e_docment_type).strip().lower() == "quotation"): """ Recuperer les données de la quotation diff --git a/GlobalVariable.py b/GlobalVariable.py index aedf06c..0c4be13 100644 --- a/GlobalVariable.py +++ b/GlobalVariable.py @@ -458,6 +458,7 @@ if (MYSY_ENV == "PROD"): LMS_BAS_URL = "mysy-training.fr/" """ elif (MYSY_ENV == "DEV"): + """ MYSY_MARIADB_USER = "mysy_mariadb_user" MYSY_MARIADB_USER_PASS = "fB5z%M)GG&g!n2c" MYSY_MARIADB_HOST = "88.170.110.220" @@ -466,6 +467,16 @@ elif (MYSY_ENV == "DEV"): MYSY_LMS_URL = "https://lms.mysy-training.com/" MYSY_LMS_BASE_DIRECTORY = "/var/www/html/chamilo_mysy/" LMS_BAS_URL = "mysy-training.com/" + """ + MYSY_MARIADB_USER = "mysy_mariadb_user" + MYSY_MARIADB_USER_PASS = "fB5z%M)GG&g!n2c" + MYSY_MARIADB_HOST = "192.168.1.21" + MYSY_MARIADB_PORT = 3306 + MYSY_LMS_BDD = "mysy_db_chamilo_rec" + MYSY_LMS_URL = "https://reclms.mysy-training.com/" + MYSY_LMS_BASE_DIRECTORY = "/var/www/html/chamilo_mysy_rec/" + LMS_BAS_URL = "mysy-hosting.com/" + MYSY_ENV_API = "http://localhost:"+str(MYSY_PORT_DEV)+"/myclass/api/" diff --git a/Inscription_mgt.py b/Inscription_mgt.py index f5a4799..d126d7f 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -3718,7 +3718,7 @@ def Controle_AddStagiairetoClass_mass_for_many_session(saved_file=None, Folder=N mysession_count_qry = {'class_internal_url': str(myclass_data['internal_url']), 'valide': '1', 'partner_owner_recid': str(partner_recid), 'code_session':str(df['code_session'].values[n]) } - print(" ### mysession_count_qry = ", mysession_count_qry) + #print(" ### mysession_count_qry = ", mysession_count_qry) mysession_count = MYSY_GV.dbname['session_formation'].count_documents(mysession_count_qry) diff --git a/Log/log_file.log b/Log/log_file.log index 99573fa..23b7b51 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -2997709,3 +2997709,17958 @@ INFO:werkzeug:127.0.0.1 - - [20/Jan/2025 17:34:40] "POST /myclass/api/Get_Given_ INFO:werkzeug:127.0.0.1 - - [20/Jan/2025 17:34:40] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - INFO:root:2025-01-20 17:34:44.059268 : Security check : IP adresse '127.0.0.1' connected INFO:werkzeug:127.0.0.1 - - [20/Jan/2025 17:34:44] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-21 11:42:39.347762 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-21 11:42:39.347762 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-21 11:42:39.347762 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-21 11:42:39.347762 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-21 11:42:39.347762 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-21 11:42:50.038262 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-21 11:42:50.038262 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-21 11:42:50.038262 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-21 11:42:50.038262 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-21 11:42:50.038262 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-21 13:56:29.571449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:29.572452 : Le token partner est vide +INFO:root:2025-01-21 13:56:29.574658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:29.578492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:29.580575 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:29.583535 : Le token partner est vide +INFO:root:2025-01-21 13:56:29.585537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:29.586532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:29.641338 : La session de connexion n'est pas valide +INFO:root:2025-01-21 13:56:29.641338 : La session de connexion n'est pas valide +INFO:root:2025-01-21 13:56:29.641338 : La session de connexion n'est pas valide +INFO:root:2025-01-21 13:56:29.641338 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:56:30.296630 : getRecodedImage - Impossible de récupérer le recid du user +INFO:root:2025-01-21 13:56:30.296630 : get_partner_account - La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:56:30.298659 : get_partner_account - La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:56:30.300149 : getRecodedImage - Impossible de récupérer le recid du user +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:56:46.176677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:56:46.320713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:46.323238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:46.328677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:46.335030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:46.340171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:46.344995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:56:46.356819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:56:46.366816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:46.374944 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:56:46.383237 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:56:46.512912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:46.516443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:46.522952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:56:46.530898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:46.536636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:56:46.565457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:56:46.573985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:46.575534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:56:46.587367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:56:46.614888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:56:46] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:57:38.069086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:57:38.073120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:57:38.077120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:57:38.082676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:57:38.087325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:57:38.092324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:57:38.102532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:57:38.107536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:57:38.113902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:57:38.121065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:57:38.130007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:57:38.137037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:57:38.143043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:57:38.150516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:57:38.155658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:57:38.169144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:57:38.175933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:57:38.186400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:57:38.192050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 13:57:38.200526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:57:38.210567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 13:57:38.214567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 13:57:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:14:39.514487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:14:39.521004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:14:39.523717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:14:39.530744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:14:39.540360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:14:39.549043 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:14:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:14:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:14:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:14:39.562204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:14:39] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:14:39.569203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:14:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:14:39.577283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:14:39.582802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:14:39] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:14:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:14:39.590794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:14:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:14:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:14:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:14:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:04.988098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:04.992099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:04.996593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:05.006121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:05.061635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:05.070198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:05.084708 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:05.139502 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:05.249380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:05.252373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:05.269898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:05.275324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:05.284186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:05.365312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:05.370316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:05.439481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:05.642072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:05.647527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:05.783417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:05.790024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:05.798459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:05.871094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:05.918705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:05.920077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:06.027257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:06.157346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:06] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:06] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:06] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:06.207450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:06.214898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:15:06.225288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:06] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:06.390806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:12.687945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:12] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:15:20.006043 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:15:20] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:21:09.525557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:21:09.533107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:21:09.538932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:21:09.550415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:21:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:21:09.563947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:21:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:21:09.572961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:21:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:21:09.585180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:21:09] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:21:09] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:21:09.594779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:21:09.599438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:21:09.607597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:21:09] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:21:09] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:21:09.620121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:21:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:21:09] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:21:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:21:10] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:24:13.832438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:24:13.836927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:24:13.841156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:24:13.848761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:24:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:24:13.852919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:24:13.861923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:24:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:24:13.875237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:24:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:24:13.882225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:24:13] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:24:13.893694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:24:13] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:24:13.905008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:24:13] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:24:13] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:24:13.910372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:24:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:24:13] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:24:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:24:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:25:54.554092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:25:54.559466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:25:54.563680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:25:54.575583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:25:54.582882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:25:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:25:54.591006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:25:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:25:54.600060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:25:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:25:54] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:25:54.610008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:25:54] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:25:54.620279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:25:54] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:25:54] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:25:54.627726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:25:54.634232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:25:54] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:25:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:25:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:25:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:29:55.752863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:29:55.757857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:29:55.760866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:29:55.769858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:29:55.773061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:29:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:29:55.780238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:29:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:29:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:29:55.795103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:29:55.801168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:29:55] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:29:55] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:29:55.812346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:29:55] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:29:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:29:55.822761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:29:55.830341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:29:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:29:55] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:29:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:29:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:31:25.051154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:31:25.056902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:31:25.064495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:31:25.071013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:31:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:31:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:31:25.081282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:31:25.085596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:31:25.094626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:31:25.102046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:31:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:31:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:31:25.117452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:31:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:31:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:31:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:31:25.128685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:31:25.132088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:31:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:31:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:31:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:31:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:34:25.209145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:34:25.214058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:34:25.220054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:34:25.227372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:34:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:34:25.235548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:34:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:34:25.244711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:34:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:34:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:34:25.253033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:34:25.258548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:34:25.267151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:34:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:34:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:34:25.275383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:34:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:34:25.285648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:34:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:34:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:34:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:34:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:35:35.860618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:35:35.867426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:35:35.873869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:35:35.877866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:35:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:35:35.885720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:35:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:35:35.892908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:35:35.898590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:35:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:35:35] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:35:35.906751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:35:35.914203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:35:35] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:35:35.922401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:35:35] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:35:35.930728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:35:35] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:35:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:35:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:35:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:35:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:36:16.506909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:36:16.511915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:36:16.648353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:36:16.705971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:36:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:36:16.713083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:36:16.720452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:36:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:36:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:36:16.763703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:36:16] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:36:16] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:36:16.810240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:36:16.815261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:36:16.831382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:36:16] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:36:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:36:16.870841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:36:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:36:16] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:36:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:36:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:37:02.341303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:37:02.346038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:37:02.348516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:37:02.353342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:37:02.359302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:37:02.365721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:37:02.380248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:02] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:02] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:37:02.388993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:37:02.394534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:02] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:37:02.402528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:02] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:37:02.407820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:02] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:37:48.373449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:37:48.384084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:37:48.387091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:37:48.395454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:37:48.406361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:37:48.414846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:37:48.431433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:37:48.447106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:37:48.461854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:48] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:37:48.475845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:37:48.482850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:37:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:38:20.003278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:38:20.007281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:38:20.012284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:38:20.016706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:38:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:38:20.021252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:38:20.025831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:38:20.031228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:38:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:38:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:38:20.041531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:38:20] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:38:20.044328 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:38:20] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:38:20] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:38:20] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:38:20.057968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:38:20.061424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:38:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:38:20] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:38:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:38:20] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:39:11.967163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:39:11.971159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:39:11.975313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:39:11.979308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:39:11.989124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:39:11.992622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:39:12.003201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:12] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:12] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:39:12.012318 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:39:12.016320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:12] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:39:12.026051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:39:12.037398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:12] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:39:44.221319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:44] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:39:52.807767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:39:52.815745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:39:52.823460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:39:52.829468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:39:52.837469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:52] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:52] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:39:52.852080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:39:52.856847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:52] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:52] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:52] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:39:56.851422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:39:56] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:40:04.733098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:40:04] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:40:14.133393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:40:14] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:41:10.103482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:41:10] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:00.222982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:00.228982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:00.234506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:00.239628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:00.245758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:00.251759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:00] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:00.258760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:00.262758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:00] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:00.275760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:00] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:00.285756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:00.291762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:00] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:01] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.095800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:16.101966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.109969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:16.113463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:16.119459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.126461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.137666 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.144831 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.563061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:16.566072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:16.571676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.576976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.583426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:16.588422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.597414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:16.599848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.604170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:16.609371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.620980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:16.625985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:16.632981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.646112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:16.648117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.657741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.665660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.673811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.681814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.690215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:45:16.695217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:16.707212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:17] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:17] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:45:25.750010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:45:25] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.430341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.435343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.440593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.445596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.450045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.454431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.460446 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.472000 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.744065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.748545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.753553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.758691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.761693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.770279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.775452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.785461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.789844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.793942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.796955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.807410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.816973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.825391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.835764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.844293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.847525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.856975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.867175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:47:57.880419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.886535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 14:47:57.892896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:47:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:48:00.147655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:48:00] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:58:53.689436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:58:53] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 14:59:00.039722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 14:59:00] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:09:49.545927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:09:49.555160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:09:49.558166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:09:49.569180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:09:49.591462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:09:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:09:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:09:49.600729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:09:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:09:49.612790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:09:49] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:09:49.621645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:09:49.627543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:09:49] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:09:49.633354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:09:49] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:09:49] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:09:49.642724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:09:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:09:49] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:09:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:09:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:10:51.597957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:10:51] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:11:44.533051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:11:44.537645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:11:44.543788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:11:44.551013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:11:44.556199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:11:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:11:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:11:44.563682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:11:44.567683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:11:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:11:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:11:44.587850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:11:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:11:44.592161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:11:44] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:11:44.601820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:11:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:11:44.614680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:11:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:11:44] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:11:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:11:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:11:49.950931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:11:49] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:11:51.043037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:11:51] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:02.865533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:02.875015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:02.886912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:02.892364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:02.904165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:02.914747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.022082 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.032150 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.211623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:03.215929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:03.222130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:03.232425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.239417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:03.247776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.252773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.262575 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:03.270573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.281577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.290577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.298854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:03.306477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.315501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:03.323497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.337499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:03.345507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.361835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.370603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.376603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:03.384759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:03.398320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:57.006415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:57.014645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:57.023658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:57.032961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:57.057613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:57.062889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:57.082349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:57] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:57] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:57.089762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:57.094109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:57.096111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:57.098549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:17:57.102338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:57] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:57] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:57.117402 : Get_Partner_Data_From_Subdomain Sous Domaine invalide +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:57] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:17:57.118492 : Get_Partner_Data_From_Subdomain Sous Domaine invalide +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:57] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:57] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:57] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:57] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:17:57] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:15.803155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:15] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:15.933898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:15.937044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:15.941854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:15.944196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:15.953920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:15.962733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:15.968614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:15.976646 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:15.989431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:16.000705 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:16.110283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:16.115897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:16.120902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:16.125184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:16] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:16.131918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:16.135325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:16] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:16.146419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:16] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:16.156507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:16] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:16.166304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:16.173488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:16] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:16] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:16] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:16] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:19.558208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:19.561208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:19.565262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:19.571875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:19.578363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:19.584927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:19.587938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:19.592946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:19.600170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:19.605492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:19.609490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:19.614688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:19.620688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:19.624683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:19.631979 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:19.638972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:19.655898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:19.660225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:19.670260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:19.679399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:18:19.683932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:19.697439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:20] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:20] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:18:21.084343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:18:21] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.383630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.389514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.397027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.401394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.407198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.415490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.416788 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.429525 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.653964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.658862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.661885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.669320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.677860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.683212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.689499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.696852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.705293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.709989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.718262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.721480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.727791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.732824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.748826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.757824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.761825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.769823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.777817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:15.790126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.794909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:15.800911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:18.831044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:18.833059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:18.836002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:18.837015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:18.838376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:18.841820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:18] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:18.844024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:18.847028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:18.849030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:18.853029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:18] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:18] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:18] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.307284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.312374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.318510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.323020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.328230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.331709 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.340251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.343259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.347686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.355194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.357505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.359813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.369432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.373530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.377057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.382891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.386366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.391074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.396773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.399151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.404422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.407424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.409604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.413598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.419780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.423253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.430076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.435094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.442015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.445055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.447558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.452628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.456137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.461683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.465853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.474244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.480374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.484481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.488975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.493174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.501182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.503181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.508176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.514346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.519122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.521571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.528783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.530927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.534655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.543143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.545402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.550029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.555166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.558175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.562551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.565937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.571125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.574927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:19.584158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:19.588415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:31.325862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:31.399681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:31.402703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:31.409795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:31.411797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:31.418449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:31.420446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:31.435720 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:31.438959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:31.443965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:31.458966 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:31.579506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:31.583507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:31.586503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:31.591510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:31.600512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:31.607042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:31.614536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:31.620537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:31.628131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:31.636560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:31] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:35.628284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:35.630279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:35.632417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:35.633662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:35.636498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:35.639856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:35.642132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:35] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:35.644515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:35.646525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:35.648523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:35] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:35] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:35] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:35] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:35] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:35] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:35] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.048408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.051636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.056621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.060779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.065249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.070631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.075740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.080869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.087292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.094266 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.097738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.103931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.107403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.111889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.117987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.121765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.127321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.129319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.136134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.138139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.140137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.147490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.154002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.160067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.163567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.171305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.175761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.179840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.183111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.187111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.192524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.195831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.199561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.205053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.210056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.215803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.217963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.224665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.229947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.233945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.237048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.243474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.246707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.249757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.258556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.263281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.266586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.270885 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.278640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.281366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.286892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.290242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.293451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.297996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.307639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.310083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.313716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.324161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:20:36.328357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:20:36.332083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:20:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:32.815163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:32] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:32.932130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:32.935130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:32.940128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:32.945129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:32.952222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:32.962774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:32.965130 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:32.967366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:32.975711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:33.000633 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:33.136952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:33.141315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:33.145730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:33.177387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:33.214334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:33.219747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:33.225749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:33.239065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:33.242708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:33.247191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:33] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:38.039309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:38.044932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:38.052683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:38.057077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:38.062744 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-21 15:21:38.064730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:38.071188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:38] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:38] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:38.095071 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:38] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:38] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:39.479557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:39] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:55.161264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:55.165264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:55.170808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:55.171853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:55.179227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:55] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:55.198439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:55.207524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:55.211657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:21:55.214131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:55] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:55.248707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:55] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:55.311908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:55] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:55] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:55] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:21:55.492895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:55] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:55] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:55] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:21:55] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:22:01.423897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:22:01.423897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:22:01.424885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:22:01.427896 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:22:01.429882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:22:01.434839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:22:01.435963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:22:01] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:22:01] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:22:01] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:22:01] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:22:01] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:22:01] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:22:01.750046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:22:01.751046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:22:01.782031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:22:01] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:22:01.812860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:22:01] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:22:01] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:22:01.903728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:22:01] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:22:04.948322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:22:05.091760 : login Login/mot de passe invalide {'email': 'contact@mysy-training.com', 'pwd': 'd195ykav', 'active': '1', 'locked': '0'} my_user.count() = 0 +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:22:05] "POST /myclass/api/login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:22:54.033667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:22:54.038666 : login Login/mot de passe invalide {'email': 'contact@mysy-training.com', 'pwd': 'epnmirub', 'active': '1', 'locked': '0'} my_user.count() = 3 +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:22:54] "POST /myclass/api/login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:23:10.160852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:23:10.165748 : login Login/mot de passe invalide {'email': 'contact@mysy-training.com', 'pwd': 'd195ykav', 'active': '1', 'locked': '0'} my_user.count() = 0 +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:23:10] "POST /myclass/api/login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:23:24.545152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:23:24.553170 : login Login/mot de passe invalide {'email': 'contact@mysy-training.com', 'pwd': 'epnmirub', 'active': '1', 'locked': '0'} my_user.count() = 3 +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:23:24] "POST /myclass/api/login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:08.842290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:08.855325 : Ajout Token OK, _id = 676844924232cc852e8e93b7 +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:08] "POST /myclass/api/login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:09.099279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:09.388086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:09.388086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:09.394264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:09] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:09] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:09.489404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:09] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:09.795667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:09.796677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:09.797672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:09.798672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:09.804377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:09] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:09.886718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:09] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:10.134887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:10.150962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:10.154967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:10.213520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:10] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:10.289543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:10] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:15.271659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:15.279645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:15.564189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:15.881119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:30.877897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:30.878934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:30.879938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:30.884937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:30.886932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:30.888934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:30.891796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:30] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:30] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:30] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:30] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:31] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:31] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:31.202931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:31.203962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:24:31.234570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:31] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:31.241565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:31] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:24:31.295650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:31] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:24:31] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.120549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.122636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.124658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.126138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.128584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.130580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.131580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.135579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.138588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.140585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.516666 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.520666 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.524322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.529005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.534481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.538501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.542906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.547917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.552602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.556161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.561161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.565151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.570182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.574259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.578260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.581260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.587177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.589198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.596818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.599079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.602505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.608249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.610524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.614191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.619323 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.621815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.627592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.631979 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.639386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.642460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.644988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.649994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.654228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.657409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.662271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.669353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.673471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.678983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.682155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.685170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.689937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.693714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.697796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.703090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.710296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.713080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.717365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.722514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.726973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.731282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.735031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.738028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.741457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.747866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.752125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.755802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.762139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.764138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:07.767135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:07.774598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:11.416225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:11.421281 : Ajout Token OK, _id = 676844924232cc852e8e93b7 +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:11] "POST /myclass/api/login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:11.677437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:11.758563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:11.759561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:11.763990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:11] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:11] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:11.801249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:11] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:12.112833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:12.113831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:12.115834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:12.119834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:12.123833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:12] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:12.161835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:12] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:12.441187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:12.456803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:12.460857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:12.502145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:12] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:12.532142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:22.031003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:22.032110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:22.035656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:22.041946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:22] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:22] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:22.293687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:22] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:22.389620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:22.390628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:22.392613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:22.399550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:22.406875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:22] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:22.651930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:22] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:22.729484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:22.730490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:28:22.736149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:22.777245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:22] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:28:23.011592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:23] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:28:23] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:30:53.782842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:53.783842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:53.784850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:53.789522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:53.790520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:53.801694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:53] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:53] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:30:53.821694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:53] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:53] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:53] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:53] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:30:54.109718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:54.110718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:54.141717 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:54] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:30:54.189728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:54] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:30:54.249238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:54] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:54] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:30:56.518494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:56.530862 : Ajout Token OK, _id = 676844924232cc852e8e93b7 +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:56] "POST /myclass/api/login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:30:56.780707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:30:56.858747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:56.859743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:56.867119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:56] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:56] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:30:56.896729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:56] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:30:57.200624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:57.201615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:57.205715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:57.211447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:57.215488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:57] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:30:57.263284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:57] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:30:57.528206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:57.544077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:30:57.547881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:30:57.575834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:57] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:30:57.621369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:30:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:31:00.411266 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:00.412276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:00.413284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:00.417854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:00.417854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:00.422016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:00.426569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:00] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:00] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:00] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:00] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:00] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:00] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:31:00.738961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:00.739971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:00.753548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:00] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:31:00.783675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:00] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:00] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:31:00.874634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:00] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:31:03.557153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:03.563140 : Ajout Token OK, _id = 676844924232cc852e8e93b7 +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:03] "POST /myclass/api/login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:31:03.822014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:31:03.899247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:03.901701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:03.906326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:03] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:03] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:31:03.932406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:03] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:31:04.241436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:04.242444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:04.244447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:04.247437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:04.252445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:04] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:31:04.301459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:04] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:31:04.568161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:04.584160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:31:04.587160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:31:04.631291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:04] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:31:04.677319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:31:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:44.263909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:44.263909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:44.270437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:44.272437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:44.274442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:44.277551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:44] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:44.283272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:44] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:44] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:44] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:44.590559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:44.591556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:44.616679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:44] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:44.663678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:44.665675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:44] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:53.374400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:53.378668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:53.378668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:53.381185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:53.383198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:53.385378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:53] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:53.389497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:53] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:53] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:53] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:53] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:53] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:53.696776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:53.697776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:53.724296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:53.741297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:53.768723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:53] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:53] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:53] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:53] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:55.158204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:55.200116 : Ajout Token OK, _id = 676844924232cc852e8e93b7 +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:55] "POST /myclass/api/login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:55.406765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:55.561234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:55.562398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:55.563379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:55] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:55] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:55.649981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:55.960785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:55.964253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:55.967630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:55.974640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:55.981980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:55] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:56.022802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:56] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:56.299605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:56.300613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:32:56.307692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:56.346922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:32:56.392797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:32:57] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:33:08.552889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:08] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:33:08.909135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:33:08.911711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:33:08.914721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:33:08.919725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:33:08.924721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:33:08.929411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:33:08.934419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:33:08.954260 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-21 15:33:08.958311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:33:08.967688 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:33:09.211816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:33:09.216348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:33:09.219890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:33:09.226551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:09] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:33:09.231139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:33:09.237620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:33:09.242308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:33:09.249561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:09] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:09] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:33:09.264340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:09] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:33:09.269350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:09] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:09] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:09] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:33:09] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:40.612291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:40.613286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:40.613286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:40.616663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:40.620136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:40.623437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:40.625431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:40] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:40] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:40] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:40] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:40] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:40] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:40.935986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:40.936985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:40.953971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:40] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:41.001038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:41] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:41.093286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:41] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:41] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:45.522191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:45.531691 : Ajout Token OK, _id = 676844924232cc852e8e93b7 +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:45] "POST /myclass/api/login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:45.771255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:45] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:45.863253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:45.865270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:45.868269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:45] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:45] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:45] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:45.900795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:45] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:46.219609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:46.220615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:46.223506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:46.227520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:46.233735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:46] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:46.265466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:46] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:46.560155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:46.561184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:46.568950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:46.623941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:46] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:46.673774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:47] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:47] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:48.801845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:48.801845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:48.802855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:48.803868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:48.805978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:48.809061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:48.809061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:48] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:48] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:48] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:48] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:48] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:48] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:49.125575 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:49.127622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:49.141648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:49] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:49.172923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:49] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:49.251132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:49] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:49] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:50.513721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:50.518758 : Ajout Token OK, _id = 676844924232cc852e8e93b7 +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:50] "POST /myclass/api/login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:50.778888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:50.856482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:50.857599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:50.860540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:50] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:50] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:50.895537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:50] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:51.202594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:51.203691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:51.205685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:51.207687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:51.213683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:51] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:51] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:51.262310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:51] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:51.544815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:51.558334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:51.564338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:51] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:51.637372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:51] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:51.660611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:56.636944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:56.638952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:56.639950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:56.642951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:56.644929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:56.649153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:56] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:56.654397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:56] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:56] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:56] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:56] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:56] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:56.969503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:56.971501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:56.983022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:57] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:34:57.029338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:34:57.031364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:57] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:57] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:34:57] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:00.553051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:00.558341 : Ajout Token OK, _id = 676844924232cc852e8e93b7 +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:00] "POST /myclass/api/login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:00.799514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:00.893220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:00.895240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:00.900728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:00] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:00] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:00.929872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:00] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:01.237336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:01.240334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:01.243540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:01.248705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:01.253338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:01] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:01.315553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:01] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:01.579749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:01.583386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:01.585417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:01.641427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:01] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:01.687974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:04.464248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:04.466411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:04.468914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:04.470940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:04.472949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:04.475951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:04.481455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:04.483456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:04.484740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:04.488986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:04.944713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:04.950029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:04.953642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:04.957086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:04.960561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:04.967779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:04.974139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:04.980214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:04.983980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:04.988748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:04.993242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:04.998270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.003527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.009402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.013679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:05.017437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.023197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.029327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:05.032805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.036822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.042165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.047257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:05.051256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.055413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:05.058413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.061775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.067776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.073014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.079326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.084410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.089707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:05.093712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.098159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.102257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.107600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.112054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.118691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:05.121777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.126864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:05.132238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.140667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.142670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.149345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:05.153570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.160934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.164805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.171150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.174667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.182157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.186675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:05.192733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.198725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.203398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:05.207764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.214616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:05.219082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.224245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.231325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:05.235832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:05.241170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:19.315367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:19.401553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:19.403547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:19.407035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:19.412488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:19.420266 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:19.424262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:19.435799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:19.435799 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:19.443796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:19.456396 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:19.600865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:19.604448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:19.608452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:19.611587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:19.619009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:19.629343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:19.635836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:19.639155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:19.647277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:19.653291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:19] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.450811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.451806 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.453264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.454262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.456275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.459277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.461276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.463298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.468863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.471487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.839245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.842266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.847090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.851374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.853991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.859649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.860892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.863919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.869223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.874457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.878893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.883616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.886940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.890497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.892710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.897310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.903195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.906563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.910568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.914780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.917927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.922087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.928152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.930255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.934035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.941270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.943714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.950183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.953307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.957885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.962069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.965653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.969021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.971767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.975961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.981781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.986891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.991074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:22.994281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:22.997625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:22] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:23.001629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:23.004628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:23.012953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:23.016135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:23.019464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:23.025489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:23.028039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:23.032545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:23.034625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:23.039562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:23.044012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:23.047012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:23.052012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:23.059118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:23.062394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:23.064697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:23.069461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:23.074476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:23.077472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:23.081168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:27.304630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:27.373136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:27.377142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:27.380144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:27.385144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:27.391139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:27.399717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:27.401713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:27.410711 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:27.428504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:27.429503 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:27.537815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:27.540827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:27.543849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:27.547275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:27.552925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:27.554922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:27.571053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:27.576051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:27.585957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:27.592441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.462470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.465472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.467600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.468652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.470652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.473998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.473998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.476999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.480994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.483997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.857925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.860924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.864933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.868781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.876018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.879013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.882499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.887756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.893275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.895268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.900186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.904568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.907998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.912615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.915612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.922850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.926875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.933977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.936982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.941146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.945150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.952638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.955665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.957682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.963240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.967109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.973608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.976606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.980611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.986850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:31.989849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.994322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:31.999373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.003585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.009364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.014387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.017475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:32.020804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.025823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.031486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:32.034665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.040775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.045208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.051014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.055028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.059297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.066829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:32.070359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.076357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.080361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:32.083358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.087354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.093361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.097290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.101592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:32.104982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.109473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:35:32.118530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:32.121530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:35:32.125257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:36:03.386712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:03] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:36:05.332542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:36:05.335542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:36:05.341006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:36:05.346268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:36:05.350269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:36:05.355343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:36:05.360366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:36:05.376189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:36:05.382368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:36:05.532397 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-21 15:36:05.534842 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:36:05.552530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:36:05.561073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:36:05.565057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:36:05.571690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:36:05.579935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:36:05.650423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:36:05.653208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:36:05.657708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:36:05.661015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:36:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:07.946965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:07.951094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:07.958760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:07.960757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:07.967239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:07.975837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:07.984951 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:07.995928 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:08.179039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:08.180254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:08.184997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:08] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:08.192103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:08.195851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:08.203914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:08] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:08.212654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:08] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:08.217849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:08.223424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:08.228976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:08] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:08] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:08] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:08] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:08] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:27.381369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:27.382813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:27.384448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:27.388671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:27] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:27] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:27.641809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:27] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:27.796727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:27.797730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:27.798730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:27.806741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:27.814614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:27] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:28.010965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:28] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:28.131023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:28.134020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:28.146017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:43:28.192017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:28] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:43:28.379553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:43:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:45:02.601035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:45:02.604082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:45:02.608606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:02] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:45:02.616356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:02] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:45:02.866650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:02] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:45:02.961546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:45:02.962550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:45:02.965548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:45:02.976550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:45:02.983546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:02] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:45:03.226719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:03] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:45:03.305297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:45:03.308847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:45:03.323596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:45:03.355211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:03] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:45:03.587974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:45:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:47:21.334760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:47:21.340094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:47:21.344118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:47:21.351319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:47:21.354920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:47:21.363295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:47:21] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:47:21.372341 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:47:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:47:21] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:47:21] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:47:21] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:47:21.416022 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:47:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:47:22.281505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:47:22] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:40.367886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:40.371946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:40.373278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:40.379108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:40.388764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:40.392754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:40.401510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:40] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:40] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:40] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:40] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:40] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:40] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:40.720974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:40.722486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:40.735545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:40] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:40.767203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:40] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:40] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:40.865725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:40] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:41.223422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:41.225451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:41.226513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:41.228537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:41.232650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:41.237694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:41.543461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:41.544470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:41.548903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:41.556336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:41.558808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:41.561633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:41.868711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:41.869721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:41.874703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:41.880621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:41.885621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:41.889454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:42.193604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:42.195092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:42.198015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:42.205024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:42.209617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:42.213608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:42.516622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:42.521680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:42.527571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:42.529581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:42.535216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:42.539207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:42.839315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:42.843323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:42.847322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:42.852407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:42.857651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:42.861700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:43.160829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:43.163854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:43.169441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:43.170439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:43.174475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:43.181163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:43.472778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:43.476298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:43.483045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:43.486589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:43.492236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:43.495706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:43.795971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:43.797000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:43.802532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:43.806725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:43.812183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:43.815365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:44.120136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:44.121139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:44.126084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:44.128618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:44.131305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:44.137993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:44.445720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:44.446719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:44.451708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:44.461025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:44.800459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:44.802506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:44.804484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:44.805485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:44.814528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:44.822330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:45.139759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:45.141268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:45.145280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:45] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:45.187133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:48:45.189944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:45] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:45] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:48:45.468663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:48:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:28.547573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:28.549592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:28.551852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:28.560710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:28] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:28] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:28.965404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:28.969000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:28.973004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:28.978001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:28.984468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:28.990259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:29.298587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:29.310222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:29.315210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:29.355419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:29.371978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:29.635336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:32.468740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:32.468740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:32.470147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:32.472159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:32.475437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:32.478362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:32.482833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:32] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:32] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:32] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:32] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:32] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:32] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:32.789084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:32.790415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:32.814481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:32] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:32.837674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:32.914996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:32] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:32] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:32] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:33.309710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:33.310710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:33.311711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:33.312711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:33.315710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:33.327711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:33.636627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:33.637654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:33.639648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:33.639648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:33.643102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:33.650123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:33.973707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:33.974741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:33.975749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:33.979046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:33.989453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:33.993548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:34.296333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:34.298884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:34.309154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:34.310150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:34.311599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:34.315145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:34.621906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:34.624946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:34.632140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:34.633190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:34.634203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:34.635210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:34.946272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:34.948276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:34.957466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:34.958467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:34.959467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:34.960675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:35.267310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:35.269310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:35.277018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:35.278160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:35.283281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:35.289479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:35.591992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:35.594015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:35.598008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:35.601013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:35.607748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:35.609823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:35.916904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:35.918914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:35.919903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:35.924150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:35.931385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:35.935386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:36.242684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:36.245736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:36.250740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:51:36.254125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:36.258125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:51:36.262785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:51:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:08.463461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:08.482471 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:08.485478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:08.489369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:08.495523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:08] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:08.515509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:08.524030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:08.529027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:08.529027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:08] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:08] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:08.559512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:08] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:08.643131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:08] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:08.721076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:08] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:08] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:08] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:08] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:08] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.126810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:09.130030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.135722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.140954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.146085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.150576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.156577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.161014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.165016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:09.168527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.174648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.181831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:09.186426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.191535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.196800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.205128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:09.209345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:09.212564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.220566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.224678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:09.228215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.234214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.239721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.244446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.251158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.255920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.260552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.265811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.269823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:09.272818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.278579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.284453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.290981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.296097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.301175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:09.306194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.310624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.313673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:09.318331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.324319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.331182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.335549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:09.339856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.346857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.356125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.364387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.371010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.375356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.380216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.388235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.394262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:09.400706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.408612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:09.412119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.417640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.423586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.430109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:54:09.435546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:09.437546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:54:09.441547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:54:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:41.913712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:41.918726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:41.921042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:41.924300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:41.927719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:41] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:41.944315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:41.947313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:41] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:41.957309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:41.961315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:41] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.063028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.073029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.076025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.712058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.716429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.721428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.727425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.730430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.735430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.739431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.743429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.747430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.752430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.758430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.763431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.767428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.773426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.778431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.782430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.786834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.794202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.800206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.802291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.808967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.811118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.816187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.818247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.823734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.829204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.835691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.840691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.844041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.849677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.854678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.857681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.860679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.864678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.869680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.875688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.879683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.882681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.887690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.893681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.902996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.908519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.916855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.922458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.928450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.932688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.938156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.942778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.948184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.954499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.958777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.963694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.968006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.973462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.977468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.983464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:42.987466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.992465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 15:55:42.998483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 15:55:43.000475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 15:55:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:39.573847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:39.581842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:39.600716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:39.604076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:39.607868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:39.613787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:39.619913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:39] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:39.676338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:39.679476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:39] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:39] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:39.836692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:39.922892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:39.926120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:39] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:39] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:39] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.843791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:40.847795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.851795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.855282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.862399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.866403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:40.869399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.873924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.879929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:40.882923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.890207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.895924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.899919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:40.902921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.907920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.912920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:40.917926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.923920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.929407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.934535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.938534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.943532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.947834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:40.952082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.956079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.963447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:40.966912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.971768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.973988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:40.979959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.985957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:40.989955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:40.996025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.000358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.005766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.009444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.015494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:41.017975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.022953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.029954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.035955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.041275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.046790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.052782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:41.056831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.064140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.069137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:00:41.074101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.081679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.087681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.094347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.099858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.106269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.113064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.118715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.124615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.131916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.136917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.142912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:00:41.146931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:00:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:01:07.089496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:01:07.091953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:01:07.095487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:01:07.097488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:01:07.101497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:01:07.106591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:01:07.121592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:07] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:07] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:07] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:07] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:07] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:07] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:01:11.168067 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:01:11.171227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:01:11.175568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:01:11.175568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:01:11.177954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:01:11.191950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:11] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:01:11.199498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:11] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:01:11.210505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:01:11.213498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:01:11.214508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:11] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:01:11.269797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:11] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:11] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:01:11.331180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:11] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:11] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:11] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:11] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:01:11] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:43.613006 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:43.617440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:43.620437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:43.621535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:43.626668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:43.631674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:43] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:43] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:43.649709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:43.655573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:43.658565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:43] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:43] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:43] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:43.770218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:43.773210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:43] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:43] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:43.794742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:43] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:43] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:43] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.255693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.260760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.262799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.269294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.271300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.274819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.281732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.285065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.288384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.290458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.297142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.300749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.303738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.310214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.315699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.319792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.323902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.327935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.337809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.342833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.346847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.347849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.353938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.361030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.364053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.369877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.372877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.378427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.381856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.388770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.393163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.397165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.401174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.406171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.411168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.414162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.419582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.424132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.429199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.435229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.438238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.443576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.447099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.452644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.456640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.461359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.463383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.469517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.474087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.477279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.482701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.488849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.497116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.502811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.507199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:03:44.515193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.518196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.520203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.523196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:03:44.525191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:03:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.597384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.601908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.608194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.613724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.622718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.624723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.629250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.633253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.639681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.645687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.648673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.654677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.659999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.665000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.669162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.673337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.678448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.683906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.686896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.691689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.694680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.703217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.707606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.713165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.721905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.726152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.730287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.734285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.740752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.743213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.746568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.750700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.756696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.761210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.767226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.770238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.774320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.779144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.783145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.786145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.790389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.795834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.801227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.804640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.809343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.815432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.820519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.823996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.829310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.833833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.836249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.843528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.845530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.850959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.853963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.860538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.866156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:27.869166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.873723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.878715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.881961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.887383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.891622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.896504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.901673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:27.903677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:28.134644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:28.151479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:28.152888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:28.159980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:28.163460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:28.168273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:28.443570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:28.475259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:28.476256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:28.479187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:28.483513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:28.491922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:28.754661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:28.801340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:28.802351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:28.803352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:28.809653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:28.816316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:29.065372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:29.129438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:29.130448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:29.132402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:29.132589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:29.140743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:29.374383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:29.451190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:29.452605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:29.454645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:29.465096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:29.467188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:29.683774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:29.779707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:29.780769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:29.782759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:29.790227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:29.793891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:29.995650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:30.104817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:30.106039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:30.111184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:30.117177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:30.122434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:30.306237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:30.430797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:30.431812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:30.433674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:30.433674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:30.438562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:30.615133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:07:30.755955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:30.756960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:30.757957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:30.760955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:07:30.766141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:07:30] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:13.307568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:13.311185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:13.313249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:13.322890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:13] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:13.342748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:13.346763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:13.349927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:13] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:13.356928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:13.360447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:13] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:13] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:13.506234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:13] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:13.520952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:13.521954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:13] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:13] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:13] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:13] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:13] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.162148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.167653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.171182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.174171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.179338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.186218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.190772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.198101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.202513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.209296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.213464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.218240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.221363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.228645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.232656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.236081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.247339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.250764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.254102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.258104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.265792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.272485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.276137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.282293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.286094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.293497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.296755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.299331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.304342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.311425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.315578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.322029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.327207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.330221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.336469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.339637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.345007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.353497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.360688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.370227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.375672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.382679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.390856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.395953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.403448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.408847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.416482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.422241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.429248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.436974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.440338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.447221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.454691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.462786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.464791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:09:14.472091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.478041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.485039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.490042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:09:14.499633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:09:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:57.660359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:57.662357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:57.665362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:57.666357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:57.718832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:57.722215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:57.726230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:57] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:57] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:57.845533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:57.849618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:57] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:57.909693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:57.913691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:57] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:58] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:58.103264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:58] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:58] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:58] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:58] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:58] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.157370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.205085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.208088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.215085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.266097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.269092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.271090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.277277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.282273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.284274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.325541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.327832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.337036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.342167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.389626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.394627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.398618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.401621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.406625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.410050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.417763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.456851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.463331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.466787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.470575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.485255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.490242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.547235 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.549233 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.555611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.556618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.562122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.567281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.571414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.576470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.620428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.623432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.629166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.631794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.637256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.641757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.651162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.654158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.659160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.662155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.669158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.675167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.681058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.684052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.694187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.695219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.713332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.718467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.726629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.730989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.736231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.778078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.782401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:10:59.786800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:10:59.790320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:10:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:12.908827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:12.913400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:12.914408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:12.917841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:12.920301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:12.922856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:12] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:12.928660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:12.929671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:12.931673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:12.935833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:12] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.510654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.514671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.520670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.525670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.530200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.534276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.542506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.552024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.559568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.562641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.567001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.575035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.584003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.588611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.596833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.607791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.611000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.618263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.621547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.630531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.636171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.640186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.643647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.651429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.657452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.663448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.671157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.676220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.683969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.687964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.695276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.698895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.704901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.712462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.716929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.725247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.729774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.733924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.740586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.743984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.758318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.765022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.770679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.777004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.780253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.788787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.799611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.805119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.813344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.818825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.826063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.835484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.840578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.844100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.851808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.859030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.866638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.871479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:12:13.875891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:12:13.883371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:12:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:07.178605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:07.183879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:07.183879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:07.190952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:07.193407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:07.197614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:07.203996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:07.206321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:07] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:07.213053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:07] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:07] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:07.357967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:07] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:07] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:07] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:07] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:07] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.280818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.284091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.290548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.291548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.298324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.305103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.309101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.318438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.325737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.331845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.340230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.351025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.361138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.365500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.373375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.377530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.387372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.394045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.399061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.403813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.410154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.419104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.424098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.428569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.436288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.444637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.450929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.461926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.467395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.476128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.479558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.485666 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.490698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.496627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.507773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.508772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.521234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.532069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.539219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.543938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.549751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.556757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.558750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.566749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.574410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.581782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.590814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.595081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.602617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.608631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.614001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.618061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.626347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.630478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.636478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.642469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.645373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:08.654063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.659153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:08.664156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:26.758789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:26.760298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:26.762308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:26.764315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:26.768312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:26] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:26.771310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:26.775341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:26.780440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:26.780440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:26] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:26] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:26.947152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:26] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:26] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.409764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.414323 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.419069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.424000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.427644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.435168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.439804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.444213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.450704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.457295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.463807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.481109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.487117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.492117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.496113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.506114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.510114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.515117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.520624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.525769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.532550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.538814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.542421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.549725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.553715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.561486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.564556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.568888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.574943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.579446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.586074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.591727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.596460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.604556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.609658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.613816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.619729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.628905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.639454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.643076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.649382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.655425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.659877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.667422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.668479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.674711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.683041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.689020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.697337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.703863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.711232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.721163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.726685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.730180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.736949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.743664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.748903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.760024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:27.762299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:27.768140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:46.240475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:46.244747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:46.247759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:46.276597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:46.281006 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:46.284107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:46] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:46.312005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:46] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:46.328445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:46.330795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:46] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:46] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:46] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:46] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:13:46.439566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:46.440582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:13:46.443581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:46] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:46] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:46] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:13:46] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:14:00.717479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:00.721685 : Le token est vide +INFO:root:2025-01-21 16:14:00.723684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:00.733689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:00.736690 : Le token est vide +INFO:root:2025-01-21 16:14:00.738691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:00.753868 : getRecodedImage - Impossible de récupérer le recid du user +INFO:root:2025-01-21 16:14:00.753868 : getRecodedImage - Impossible de récupérer le recid du user +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:14:00.808398 : get_user_account Le token est vide +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:00] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:14:00.809400 : get_user_account Le token est vide +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:00] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:14:10.468070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:14:10.647932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:10.657277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:10.662603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:14:10.674095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:10.692501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:10.694978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:10.710351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:10.715358 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:14:10.735573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:10.762052 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:14:10.915063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:10.921859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:10.925962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:10.932963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:14:10.942338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:14:10.952345 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:14:10.962592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:10.967593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:10.975089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:14:10.979410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:11] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:11] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:11] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:14:11] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:45.651317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:45.658470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:45.671570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:45.678741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:45.686814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:45.692044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:45.697079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:45.707334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:45.826893 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:45.834679 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:45.880686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:45.885919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:45.893704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:45.901215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:45.915924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:45.935168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:45.946192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:45.954192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:45.963370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:45.978691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:46] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:46] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:53.771975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:53.773996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:53.776269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:53.780434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:53.784830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:53.787860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:53.789866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:53] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:53.792911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:53.796008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:53.798492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:53] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:53] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:53] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:53] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.287506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.291806 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.295293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.300455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.302479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.308724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.311920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.318855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.322857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.327524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.331019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.333616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.339842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.343911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.344912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.351188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.356389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.359753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.364397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.366642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.372911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.377480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.380480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.384747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.391237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.395007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.400005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.405006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.409453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.412874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.418335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.422856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.426363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.430840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.437330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.438433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.441454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.444457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.451157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.454697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.457768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.462781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.467851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.470985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.475158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.481015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.487570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.491610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.497079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.502067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.508024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.511476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.516105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.519434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.524973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.527502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.532343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.538966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:54.543575 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:54.546849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:58.350048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:58.427407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:58.430426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:58.433893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:58.438354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:58.445138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:58.449980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:58.459211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:58.460210 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:58.474441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:58.481438 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:58.570663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:58.573663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:58.577388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:58.585521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:58.589908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:58.595397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:58.605368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:58.619024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:23:58.624062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:23:58.628039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:23:58] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:24:03.713118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:24:03.717113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:24:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:24:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_client.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-21 16:27:22.578788 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-21 16:27:22.578788 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-21 16:27:22.579785 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-21 16:27:22.579785 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-21 16:27:22.579785 : ++ 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\\partner_client.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-21 16:28:02.455654 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-21 16:28:02.456654 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-21 16:28:02.456654 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-21 16:28:02.456654 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-21 16:28:02.456654 : ++ 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\\partner_client.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-21 16:29:14.389332 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-21 16:29:14.390346 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-21 16:29:14.390346 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-21 16:29:14.390346 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-21 16:29:14.390346 : ++ 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\\partner_client.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-21 16:31:49.120180 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-21 16:31:49.121193 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-21 16:31:49.121193 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-21 16:31:49.121193 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-21 16:31:49.121193 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-21 16:38:43.223665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:38:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:39:28.517096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:39:28.524099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:39:28.534237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:39:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:39:28.541261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:39:28.551348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:39:28.557887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:39:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:39:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:39:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:39:28.649690 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:39:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:39:28.658623 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:39:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:39:28.867114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:39:28.870573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:39:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:39:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:40:22.444436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:40:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:34.440636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:34.455638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:34.467314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:34.480538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:34] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:34] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:35.526334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:35.535268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:35.890012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:36] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:36.198875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:36.200878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:36.201873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:36.204863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:36.211354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:36] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:36.468194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:36] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:36.568286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:36.573584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:36.573584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:36.600134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:36.669694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:36] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:36.685267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:36] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:36] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:36] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:36] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:36.823291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:36.825284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:36] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:36.994902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:37.026475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:37] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:37] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:37.137906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:37] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:37] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:37.651302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:37.652300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:37.654304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:37.656302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:37.663200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:37.671549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:37.987169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:37.987169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:37.989706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:37.990694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:37.994802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:38.001549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:38.307508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:38.313957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:38.322966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:38.326399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:45:38.348546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:45:38.350573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:45:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:46:08.799530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:46:08.804087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:46:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:46:08.809112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:46:08.813390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:46:08.819046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:46:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:46:08.825476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:46:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:46:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:46:08.846863 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:46:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:46:08.855583 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:46:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:46:09.034175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:46:09.039424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:46:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:46:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:47:03.571105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:47:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:32.722888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:32.729425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:32.730556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:32.737725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:32.741077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:32.746310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:32] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:32.751790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:32.753289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:32.756885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:32.765570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:32] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:32] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:32] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.287893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.292894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.299251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.307422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.312408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.318443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.324638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.329754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.333758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.340019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.345500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.347976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.354330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.365213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.368953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.377119 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.380192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.386015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.391577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.397651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.402312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.411587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.416920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.427661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.430514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.436825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.442885 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.453809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.459831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.465145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.471244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.479038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.486049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.493052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.498825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.505837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.513435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.519326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.527851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.537335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.539723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.551315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.554419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.563313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.570247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.575757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.581664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.591338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.599339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.605778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.613905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.620711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.626078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.630836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.638003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.643015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:33.647707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.654713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.658714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:33.666706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:59.695327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:59] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:59.814946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:59.821190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:59.826191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:59.833186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:59.843859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:59.851082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:59.859137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:59.865246 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:50:59.880918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:50:59.887472 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:50:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:51:00.001259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:51:00.008464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:51:00.018639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:51:00.024646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:51:00.037155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:51:00.040268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:51:00.047999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:51:00.053398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:51:00.066822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:00] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:51:00.081499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:00] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:00] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:00] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:51:03.926681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:51:03.931178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:51:07.838829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:51:07.848156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:51:07.853898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:51:07.860940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:07] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:51:07.865110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:51:07.877952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:07] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:07] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:51:07.890811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:51:07.894810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:07] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:51:07.908592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:07] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:07] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:51:07.915561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:07] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:51:07.922693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:51:07.931295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:07] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:51:07.937712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:51:07.941719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:07] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:07] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:07] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:07] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:51:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:52:19.091489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:52:19.096269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:52:19.102764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:52:19.111371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:52:19.116424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:52:19.126416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:52:19.137079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:52:19.148166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:52:19.151816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:52:19.160198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:52:19.174330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:52:19.177341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:52:19.184493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:52:19.191753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:52:19.201777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:52:19.212284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:52:19.216283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:52:19.226019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:52:19.234048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:52:19.241204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:52:19.254330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:52:19.259860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:20] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:20] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:52:22.123809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:52:22] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:00.245662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:00.248661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:00.254654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:00.262180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:00.266405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:00.269425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:00.276306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:00.277635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:00.282656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:00] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:00] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:00] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:00.298372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:00.301373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:00] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:01] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:57.996812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:58.002033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:58.005026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.010026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:58.016506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:58.020559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.043577 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.044581 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.254424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:58.258563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:58.263073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:58.267988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.273575 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:58.278626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.286917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.292881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.303012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:58.307510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.315122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:58.323559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.331819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.340808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.352284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.360068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:58.366252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:58.375436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.394911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:58.402363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:54:58.408364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:54:58.418695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:59] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:54:59] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:55:09.975885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:55:09.979917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:55:09.987314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:55:09.999189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:55:10.009624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:55:10.021379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:55:10.023832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:55:10.034983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:55:10.051256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:55:10.069418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:55:10.074905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:55:10.088512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:55:10.093513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:55:10.105040 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 16:55:10.111042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-21 16:55:10.122005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 16:55:10] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:26:08.229730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:26:08.233491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:26:08.240677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:26:08.253576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:26:08.258590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:26:08.267973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:26:08.271249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:26:08.278556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:26:08.287209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:26:08.362511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:26:08.365180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:26:08.369178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:26:08.376694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:26:08.381881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:26:08.389933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:26:08.399502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:26:08.407031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:26:08.415108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:26:08.428187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:26:08.435190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:26:08.439727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:26:08.446959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:26:11.925899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:26:11] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:27:43.289852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:27:43.294353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:27:43.299136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:27:43.302295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:27:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:27:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:27:43.315363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:27:43.319585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:27:43.326493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:27:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:27:43.334966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:27:43] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:27:43] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:27:43.342254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:27:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:27:43.350656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:27:43] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:27:43.361937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:27:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:27:43] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:27:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:27:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:31.088195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:31.095634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:31.102626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:31.108042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:31.111035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:31.114036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:31] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:31] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:31] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:31.170931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:31.174683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:31.177682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:31.183059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:31.188079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:31] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:31] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:32] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:46.834938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:46.840985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:46.847991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:46.853438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:46.858265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:46.864261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:46.893854 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:46.904670 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:47.104906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:47.108314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:47.112789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:47.119402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:47.124421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:47.131911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:47.136696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:47.141202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:47.152445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:47.156501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:47.159502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:47.168516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:47.173690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:47.194787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:47.201435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:47.210261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:47.221819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:47.234574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:47.244389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:47.260516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:31:47.268531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:31:47.276389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:31:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.317253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.325595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.331597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.338106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.345120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.354140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.358142 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.378153 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.725656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.736310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.740560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.745558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.748561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.754563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.767559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.775899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.783570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.791891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.802894 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.806147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.822512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.827134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.837227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.846754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.861147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.869746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.875523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.883558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:33:32.896610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:33:32.903639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:33:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:38:59.514275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:38:59.521281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:38:59.524275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:38:59.530239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:38:59.535252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:38:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:38:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:38:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:38:59.548088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:38:59] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:38:59.555147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:38:59] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:38:59.559325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:38:59.564658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:38:59.569747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:38:59] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:38:59.578386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:38:59] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:38:59] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:38:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:38:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:39:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:53.861356 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:46:53.864357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:46:53.872528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:46:53.878688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:46:53.883807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:53.898078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:53.912530 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:53.915492 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:54.243386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:46:54.247411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:46:54.252401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:54.258706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:46:54.263293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:54.273407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:54.283164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:54.291790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:46:54.297529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:54.308016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:46:54.311516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:46:54.319899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:54.325900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:46:54.333902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:54.346711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:54.367498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:54.374597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:46:54.380032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:46:54.388834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:54.398294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:46:54.410799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:46:54.420773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:46:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:06.740335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:06.766338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:47:06.769356 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:47:06.771344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:47:06.778457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:47:06.783840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:06.795842 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:06.805327 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:07.129441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:47:07.132479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:47:07.138223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:07.144751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:07.152029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:47:07.157027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:07.169046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:07.176047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:47:07.181390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:07.189243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:07.195226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:47:07.199511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:47:07.202232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:07.223042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:07.231313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:47:07.239311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:47:07.248312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:07.259313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:07.274091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:47:07.281443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:47:07.287750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:47:07.300704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:47:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:48:31.797607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:31.808611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:31.812611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:48:31.819608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:31.824097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:48:31.831175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:31.832170 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:48:31.847008 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:48:31.988929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:31.991928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:32.006930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:48:32.012930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:32.016930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:32.021933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:48:32.030941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:48:32.039480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:32.042478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:48:32.054481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:32.060474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:32.063476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:48:32.073478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:32.076478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:48:32.090481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:48:32.097477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:32.102471 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:32.109558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:48:32.124083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:32.130114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:48:32.134832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:48:32.153340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:32] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:48:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.097400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.102400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.109049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.115045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.117047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.124544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.128540 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.143433 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.363983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.369381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.372631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.379630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.386969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.391970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.404853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.407140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.414486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.421616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.429167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.434634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.447329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.454336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.459975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.467498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.479730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.486502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.492509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:20.497497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.516202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:20.522201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:44.895924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:44.902925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:44.910922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:44.914928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:44.921205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:44.926662 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:44.946808 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:44.955973 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:45.209453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:45.214455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:45.221232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:45.228270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:45.233523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:45.241692 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:45.250616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:45.261819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:45.268823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:45.276266 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:45.287775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:45.299879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:45.308957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:45.320758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:45.330954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:45.337959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:45.349996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:45.357423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:45.369386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:45.378597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:49:45.395992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:49:45.399996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:49:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:31.949303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:50:31.953303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:31.961300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:50:31.964303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:50:31.972302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:31.979723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:50:31.992942 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:32.004593 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:32.323071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:50:32.327079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:50:32.332073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:32.339074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:32.346076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:32.353068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:50:32.360678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:32.371008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:32.380301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:32.386568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:50:32.391101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:32.403865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:50:32.405864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:32.417890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:50:32.423371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:32.441197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:50:32.445398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:32.566572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:50:32.571317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:32.578862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:50:32.590302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:50:32.602113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:50:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:24.204257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:24.210291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.217288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.225572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.230578 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:24.242828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.245830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.256829 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:24.542878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.545876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.549875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.554875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:24.560868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.566873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:24.576893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:24.592447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.596447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.604956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:24.613311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.617309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:24.628311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.634310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:24.646734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.653560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:24.665346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.672861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:24.685318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:24.692551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:24.697943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:24.713096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:57.970231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:57.974587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:57.979681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:57.988282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:57.992724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:57.999561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:58] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:58.008807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:58.010845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:58.014325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:58] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:51:58.024816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:51:58.031359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:58] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:51:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:38.334808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:38.340792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:38.345222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:38.351499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:38.358819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:38.366803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:38.372860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:38.377302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:38.383840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:38.392169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:38.395279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:58.703079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:58.707084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:58.711085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:58.719606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:58.729946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:58.738265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:58.748626 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:58.757725 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:59.073637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:59.077664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:59.083140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:59.091438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:59.098404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:59.109934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:59.116186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:59.126832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:59.131832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:59.135832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:59.142837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:59.146834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:59.159309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:59.181319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:59.186686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:59.192774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:59.200019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:59.207675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:59.223939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:59.231934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-21 17:57:59.239592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 17:57:59.244596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:57:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:58:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 17:58:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:36.613056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:36.737797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:36.741966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:36.745971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:36.752770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:36.760770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:36.767144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:36.773171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:36.776161 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:36.792125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:36.797260 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:36.920189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:36.925214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:36.930228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:36.934348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:36.942088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:36.950627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:36.957270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:36.964304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:36.969308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:36.978308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:36] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:37] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:37] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:39.093408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:39.096627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:39.101321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:39.105326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:39.115247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:39.118274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:39.124274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:39.131981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:39.136005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:39.141003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:39.150119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:39.157538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:39.162027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:39.175688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:39.180328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:39.187384 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:39.193799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:39.203323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:39.213785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:39.221630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-21 18:05:39.234997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-21 18:05:39.240204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Jan/2025 18:05:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-22 09:29:50.833689 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-22 09:29:50.834691 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-22 09:29:50.834691 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-22 09:29:50.834691 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-22 09:29:50.834691 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-22 09:30:05.461386 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-22 09:30:05.461386 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-22 09:30:05.461386 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-22 09:30:05.461386 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-22 09:30:05.461386 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-22 09:33:37.848681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:38.125793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:38.129793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:38.135769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:38.142173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:38.150320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:38.158096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:38.187678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:38.192666 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:38.252986 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:38.255454 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:38.355812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:38.363737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:38.369187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:38.376807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:38.435788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:38.457747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:38.464946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:38.472253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:38.483068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:38.496171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:38] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:40.785796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:40.791465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:40.798013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:40.804177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:40.813398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:40.818562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:40.826553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:40.836932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:40.842991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:40.847498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:40.857997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:40.862566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:40.872565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:40.883452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:40.898318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:40.909717 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:40.919305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:40.932176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:40.942662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:33:40.947186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:40.961114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:33:40.969394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:33:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:49:46.314621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.323837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.329541 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:49:46.336081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.347041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:49:46.359889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.365856 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:49:46.375419 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:49:46.703839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.707441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.712438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.719442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:49:46.725439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.732441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:49:46.743326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:49:46.748579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.761602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:49:46.775642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.780943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:49:46.789558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.793558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.803727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:49:46.816018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:49:46.832219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:49:46.843448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.849884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.857395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 09:49:46.874751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.881833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 09:49:46.888970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:47] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 09:49:47] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:43:55.559282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:43:55.564686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:43:56] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:43:56] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:44:25.283671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:44:25] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:44:31.372778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:44:31] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:44:44.911137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:44:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:44:53.749254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:44:53] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:46:05.886153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:46:05.889825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:46:05.903028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:46:05.905429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:46:06.417199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:46:06.434458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:46:06.438060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:46:06] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:46:06.853638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:46:06.901556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:46:06] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:46:06] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:46:07] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:46:07] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:46:07.297405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:46:07.299419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:46:07] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:46:07.400692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:46:07] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:46:07] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:46:12.071097 : Get_Partner_Data_From_Subdomain Sous Domaine invalide +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:46:12] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:46:12.073082 : Get_Partner_Data_From_Subdomain Sous Domaine invalide +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:46:12] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-22 11:55:54.252229 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-22 11:55:54.253226 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-22 11:55:54.253226 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-22 11:55:54.253226 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-22 11:55:54.253226 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-22 11:57:28.739603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:57:28.742611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:57:28.745986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:57:28.751107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:57:28.755275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:57:28.758336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:57:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:57:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:57:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:57:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:57:28.808118 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:57:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:57:28.814844 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:57:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:57:29.041499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:57:29.047499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:57:30.172041 : Get_List_object_owner_collection_Stored_Files Il manque des informations obligatoires +INFO:root:2025-01-22 11:57:30.172041 : Get_List_object_owner_collection_Stored_Files Il manque des informations obligatoires +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:57:30] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:57:30] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:58:56.390805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:58:56.396035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:58:56.400479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:58:56.410550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:58:56.420944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:58:56.423948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:58:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:58:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:58:56.432091 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:58:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:58:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 11:58:56.441891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:58:56.451079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 11:58:56.468931 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:58:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:58:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:58:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 11:58:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:00:16.454174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:00:16.459175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:00:16.464179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:00:16.474204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:00:16.480318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:00:16.487087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:00:16.488091 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:00:16.505699 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:00:16.653476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:00:16.659470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:00:16.664470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:00:16.673467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:00:16.684160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:00:16.793746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:00:16.797361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:00:16.800571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:00:16.826607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:00:16.844622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:00:16] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:01:33.594798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:01:33.599180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:01:33.603588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:01:33.609768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:01:33.616788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:01:33.625193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:01:33.633552 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:01:33.647687 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:01:33.768386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:01:33.771893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:01:33.782182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:01:33.788285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:01:33.794798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:01:33.805564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:01:33.812913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:01:33.824879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:01:33.831719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:01:33.839640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:01:33] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:03:45.344208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:03:45.347794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:03:45.355525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:03:45.361075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:03:45.367552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:03:45.377589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:03:45.387465 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:03:45.399854 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:03:45.568377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:03:45.576863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:03:45.588244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:03:45.597536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:03:45.630975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:03:45.636405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:03:45.644437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:03:45.655291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:03:45.665216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:03:45.669941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:03:45] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:04:41.699269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:04:41.709632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:04:41.711123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:04:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:04:41.729879 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:04:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:04:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:07:02.755327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:07:02.760330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:07:02.764325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:07:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:07:02.779556 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:07:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:07:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:07:21.622479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:07:21.627487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:07:21.634033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:07:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:07:21.644644 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:07:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:07:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:07:49.020948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:07:49.027610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:07:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:07:49.035148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:07:49.046603 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:07:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:07:49] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:07:54.474793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:07:54.483802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:07:55] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:07:55] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:10.922920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:08:10.934157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:10.941155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:08:10.954378 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:17.862107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:08:17.868976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:08:17.878732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:17.893749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:17.903436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:08:17.914695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:08:17.921740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:17.933736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:17] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:17] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:17.943169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:08:17.954173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:08:17.968430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:17] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:17.983191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:08:17.996114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:17] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:18.007867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:08:18.020159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:18.036434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:18.044802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:08:18.052403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:18.062253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:18.071304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:08:18.080329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:18.104250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:18] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:19.951246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:08:19.957447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:19.960496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:19.973920 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:53.763676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:54] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:08:54.074027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:08:54.078457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:54] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:08:54] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:03.346603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:03.354075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:03.359619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:03.370631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:03.379974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:03.383985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:03.398977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:03.405356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:03.416211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:03.426485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:03.433774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:03.649578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:03.655578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:03.664579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:03.673764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:03.681967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:03.685988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:03.692569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:03.704942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:03.723778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:03.731851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:03.741431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:08.945039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:09.073837 : Controle_Add_Update_SessionFormation_mass_for_many_class : entete du fichier csv. 'civilite' n'est pas acceptée +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:09] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:20.954767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:20.958821 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:20.965043 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:20.974673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:20.983461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:20.992220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:21.007664 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:21.012613 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:21.229423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:21.236900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:21.241247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:21.249426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:21.258236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:21.269357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:21.273348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:21.283569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:21.292558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:21.299343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:21.309258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:21.323386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:21.330365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:21.336907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:21.343900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:21.364050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:21.371943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:21.380213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:21.383218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:21.400413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:21.409072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:21.416847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:22] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:22] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:53.797203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:53] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:15:53.925727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:15:53.931239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:53] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:15:54] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:16:08.281670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:16:08] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:16:12.346036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:16:12.354256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:16:12.358741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:16:12.367015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:16:12.376344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:16:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:16:12.385355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:16:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:16:12.394624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:16:12] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:16:12] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:16:12] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:16:12] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:16:12] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.187687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:18.193189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:18.198728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.209817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:18.217221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:18.227310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:18.230494 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.249661 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.517838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:18.522966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:18.525614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:18.532770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.541942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.550187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.561064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.568294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.578857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:18.584832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.594900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:18.602270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.609799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.619479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.627842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:18.636443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.656350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.663887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:18.671882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:18.680890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:18.697523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:18.704903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:24.340484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:24] "POST /myclass/api/Get_List_Partner_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:24.359888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:24] "POST /myclass/api/Get_List_Partner_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:35.760823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:35.763824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:35.767922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:35.773572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:35.782449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:35.788768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:35.792715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:35] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:47.205675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:47] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:19:47.579990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:19:47.582008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:47] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:19:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:20:20.374616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:20:20.403071 : Delete_List_SessionFormation1 Document supprimé. La session_id 6790d1c6e4f3be488c23f869 a été correctement supprimée +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:20:20] "POST /myclass/api/Delete_List_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:20:20.553515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:20:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:22.952251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:22.955731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:22.963209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:22.967203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:22.973430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:22.978953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:22.987110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:22.989133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:22] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:22] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:23] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:23] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:23.005926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:23.009935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:23.011950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:23] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:23] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:23] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:34.788762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:34.796025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:34.802016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:34.808700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:34.821862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:34.829841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:34.841561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:34.852187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:34.858602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:34.865377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:34.888229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:34.904436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:34.917665 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:34.928020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:34.934500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:34.943217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:34.958239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:34:34.960233 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:34.975777 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:34:34.984775 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:34] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:34:35] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:39:19.881946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:39:19.886925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:39:19.896260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:39:19.901802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:39:19.905312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:39:19.913978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:19] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:39:19.921133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:19] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:39:19.926667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:39:19.930795 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:19] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:39:19.935246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:19] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:19] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:19] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:39:19.961176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:19] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:39:19.967196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:39:19.972128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:39:19.975832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:19] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:39:19.996944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:20] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:39:20.008671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:20] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:39:20.018884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:39:20.024929 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:20] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:20] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:39:20.036082 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:20] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:39:20.042846 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:20] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:39:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:41:25.764176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:41:25.769269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:41:25.773263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:41:25.777497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:41:25.785390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:41:25.789794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:41:25.795508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:41:25.809900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:41:25.817073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:41:25.823492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:41:25.838539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:41:25.845631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:41:25.872115 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:41:25.877440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:41:25.883928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:41:25.892712 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:root:2025-01-22 12:41:25.894712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:41:25.904279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:41:25.920585 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:41:25.931166 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:41:25] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:46:26.619282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:46:26.623526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:46:26.629065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:46:26.632067 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:46:26.638409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:46:26.646927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:46:26.656615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:46:26.664133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:46:26.667624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:46:26.676913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:46:26.693982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:46:26.703038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:46:26.727160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:46:26.729152 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:46:26.731633 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:46:26.740748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:46:26.747252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:46:26.750613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:46:26.776554 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:46:26.785197 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:46:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:47:22.170292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:47:22.187790 : Delete_List_SessionFormation Impossible de supprimer la session sess_test. Vous avez 1 inscriptions associées.Suppression en masse annulée +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:47:22] "POST /myclass/api/Delete_List_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:47:30.522888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:47:30.556429 : Delete_List_SessionFormation1 Document supprimé. La session_id 6707909797308f17f8a74e5a a été correctement supprimée +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:47:30] "POST /myclass/api/Delete_List_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:47:30.685902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:47:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:48:48.444059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:48:48.626873 : Controle_Add_Update_SessionFormation_mass_for_many_class : entete du fichier csv. 'civilite' n'est pas acceptée +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:48:48] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:49:47.635406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:49:47.730212 : Controle_Add_Update_SessionFormation_mass_for_many_class : entete du fichier csv. 'civilite' n'est pas acceptée +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:49:47] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:30.269358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:52:30.297897 : Controle_Add_Update_SessionFormation_mass_for_many_class : entete du fichier csv. 'civilite' n'est pas acceptée +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:30] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:41.575902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:52:41.581704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:52:41.587430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:52:41.594460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:41.605077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:52:41.610195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:41.626195 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:41.634918 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:41.944760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:52:41.948001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:52:41.954398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:41.959775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:41.967963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:52:41.978502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:41.987652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:41] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:41.991664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:41] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:42.001315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:52:42.010738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:42.019804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:42.028466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:42.036948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:42.048598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:42.056520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:42.066486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:42.077158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:52:42.083674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:42.098149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:42.104557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:42.120124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:52:42.123147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:52:48.283991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:52:48.305365 : Controle_Add_Update_SessionFormation_mass_for_many_class : entete du fichier csv. 'civilite' n'est pas acceptée +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:52:48] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:53:22.382056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:22] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:53:22.776385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:53:22.783657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:22] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:23] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:53:29.006705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:53:29.009971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:53:29.014313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:53:29.022436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:29] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:53:29.026923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:53:29.036436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:53:29.040578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:29] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:29] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:53:35.048134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:53:35.052219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:53:35.056361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:53:35.063911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:53:35.076178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:35] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:53:35.087376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:53:35.090485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:53:35.096813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:53:35.105157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:35] "POST /myclass/api/Get_List_Groupe_Inscrit_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:35] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:53:35.113728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:35] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:35] "POST /myclass/api/Get_List_Groupe_Inscrit_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:35] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:53:41.846351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:41] "POST /myclass/api/Create_Automatic_Sequence/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:53:41.951267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:53:41] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:59:33.877827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:59:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:59:42.488626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 12:59:42.714640 : Controle_AddStagiairetoClass_mass_for_many_session : entete du fichier csv. 'date_naissance' n'est pas acceptée +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 12:59:42] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-01-22 12:59:51.784899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:04] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-01-22 13:00:04.599149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 13:00:04.602718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 13:00:04.608314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 13:00:04.612743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:04] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-01-22 13:00:09.819835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 13:00:16.895338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 13:00:16.901069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 13:00:16.904614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 13:00:16.911724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 13:00:16.916875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:16] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-22 13:00:16.921991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 13:00:16.932360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:16] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-22 13:00:16.941451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:16] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:16] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:17] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:17] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-22 13:00:20.254318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 13:00:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:03.317552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:06] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:06.727235 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:06.730235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:12.246139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:16.599436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:16] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:16.611243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:16.616867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:16.621870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:16.627919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:16.630914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:16.639808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:16] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:16] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:16] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:22.026466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:22] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:28.290948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:28] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:28.300633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:28.304633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:28.309316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:28.313942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:28.323008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:28] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:28.330407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:28] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:28] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:30.747730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:30] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.477125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:41.479679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:41.484041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.492117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:41.498798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.505092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:41.509353 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.523571 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.767603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:41.771600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:41.777131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:41.783953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.792217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.797230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:41.802002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.810125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.817172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.825204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.832740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:41.837313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.845432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.853000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:41.861435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.877029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.884022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:41.888950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.895694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:41.905006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:41.920223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:41.926681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:46.861671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:46.865178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:46.868904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:46.874525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:46.881087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:46.889967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:46] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:46.897482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:46] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:46] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:51.469433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:55.775213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:55.779776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:55.781144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:55.788249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:55] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:55.795949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:55.802349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:49:55.811975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:55] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:49:55.827106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:55] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:55] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:56] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:56] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:56] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:49:56] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:50:00.768341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:50:00] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:50:04.837029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:50:04] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:50:19.347076 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Colas Rail 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 22/01/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_64898.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Colas Rail 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 22/01/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_60515.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:50:29] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:50:29.012824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:50:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.535370 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:25.540052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:25.544934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.552013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:25.558854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.572263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:25.573281 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.587427 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.823932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:25.826936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:25.831451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:25.839467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.846008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.853673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:25.857700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:25.862703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.876602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:25.878096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.889601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:25.893597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.901007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.909096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:25.917234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.928614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:25.935450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.948349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.954111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.966474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:25.973837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:25.985177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:26] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:33.977818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:55:33.981505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:34] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:34] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:55:41.600158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:55:41] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:44.467557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:44.476477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:44.480448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:44.489488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:44.498411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:44.506329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:44.523352 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:44.541744 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:44.913077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:44.918946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:44.945121 : Get_List_object_owner_collection_Stored_Files Il manque des informations obligatoires +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:44.946122 : Get_List_object_owner_collection_Stored_Files Il manque des informations obligatoires +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:47.901113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:47.904613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:47.909416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:47.914461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:47.919512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:47.925919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:47.937436 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:47.945406 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:48.297271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:48.299267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:48.305232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:48.312027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:48.318393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:48.327764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:48.331273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:48.341985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:48.349089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:48.355618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:48.364299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:48.374930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:48.379050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:48.386698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:48.399890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:48.413059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:48.419271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:48.428538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:48.443879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:48.451455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 14:57:48.455860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 14:57:48.474955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 14:57:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:00:13.458119 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:00:13.463884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:00:13.467724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:13] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:00:13.474341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:00:13.482353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:00:13.486425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:13] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:13] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:00:13.496350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:13] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:00:16.257277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:00:27.621639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:00:27.625234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:00:27.630688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:00:27.636687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:00:27.643196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:00:27.650726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:00:27.657787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:00:27.663346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:27] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:27] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:27] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:27] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:00:29.488642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:29] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:00:34.575003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:00:34] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:01:23.790886 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Colas Rail 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 22/01/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_67102.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Colas Rail 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 22/01/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_38627.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:01:33] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:01:33.020145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:01:33] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:04:33.586251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:04:39.152579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:04:39.156584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:04:39.161127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:04:39.173754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:04:39.180243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:04:39.192165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:39] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:04:39.199353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:04:39.209348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:39] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:04:39.242341 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:39] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:04:39.250566 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:39] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:39] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:39] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:04:39.455783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:04:39.460834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:04:39.466396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:04:39.470535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:39] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:04:39.495272 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:39] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:39] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:04:40.111127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:04:40.115623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:04:40.120229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:04:40.125730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:04:40.148346 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:40] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:40] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:04:48.555128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:04:48.559562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:04:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:10:50.254152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:10:51] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:13:14.532363 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '


 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Colas Rail 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 22/01/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

\t
Signature Client

' + dest = <_io.BufferedRandom name='./temp_direct/convention_Signe_22_01_2025_26.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPUAAAD1AQMAAACyfyEmAAAABlBMVEUAAIv///+fga7nAAACYUlEQVR42u1ZMY7DMAxTLoPHPiE/qT8WIAHysfQnfkJHD0F0pJQebrqtOA7NYBj1IlAiRanmf37dPu+f9/e+P81swJ1H6/ebezlvB360xfuX/f29+53xLe4PBNkZEG5js/qcp3iQiG+28vDDekVABvwa8ZtsUIovQZyn4sCvEz+t+PyYgNo6meEouxR+V/2V3YBaRaYDSZ36I3+Z2sfvQ4e/+W2hKlMfMt0v/dHAD6kdKX0r+RFwjqmEGvhRUDYUIW6+pz6vZlWk/pDabmgY5Qx+PJdW8FvzUwQ/FhxUzz1UJVrHTqWpOvoCwo7Jj6w/ULf1QYQfkOZeWYa7sQkjq34mU0Tqjw2D18omgnAt4VTRF2etkbqhytQ/ILmQ0yr8oCoTP5KE4fZovTL1t0GLkxArlXpJ/StC/Zf4wbrY6GRKK6HUKvmlPgM/WtOVkYY/wMOp4g+QXxacZ2oBYkqzCfHjnlWH/kGTgNDW9NQi/iBHI4ggXbO9xhEZ/lKLcdC6pBLSzujoHw6GRv8Ha+9BEtafyehLCRP4oLWiyYp2p1N/W0NqL38f0heTcKRbAr+x2d1gAhFQS6eKcJX0ueX8RqcV9RfzB+2+iD/lwsWmHq6USgimcFxX4QcMPbdCJZzWkNJHErtM/3Au1F7+LzqJkv7NUw4clUpzkho/O0GZ/QFJPHCqDOtMp2BC+mzp/zikM9LcFMnUH/dXMYTEaBn7g7QzLrSfHFv6v7Crl4mRio/++SBT7JK+KrXfpci8/B9vQvjF/jQLLlb3GZ/Mfi35G11t45Io7apO//38f/V5/7f3b23wuD3S/WcGAAAAAElFTkSuQmCC', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 609 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATsAAADICAYAAACXrUbEAAAVf0lEQVR4Xu2dB5AsVRWGp1VMaBkwIYrPKoyYI4rhiQEjimIppegzYMaIERBMYELMkVKqVBSzaBkwPXPCgGIEZMVEGVDBWIbr/9/XPfYM+3ZnZndnbvf5TtV9u293pqfPd27/e7vvuedWAwwCEIBAAAJVAB9xEQIQgMAAsaMTQAACIQggdiHCjJMQgABiRx+AAARCEEDsQoQZJyEAAcSOPgABCIQggNiFCDNOQgACiB19AAIQCEEAsQsRZpyEAAQQO/oABCAQggBiFyLMOAkBCCB29AEIQCAEAcQuRJhxEgIQQOzoAxCAQAgCiF2IMOMkBCCA2NEHIACBEAQQuxBhxkkIQACxow9AAAIhCCB2IcKMkxCAAGJHH4AABEIQQOxChBknIQABxI4+AAEIhCCA2IUIM05CAAKIHX0AAhAIQQCxCxFmnIQABBA7+gAEIBCCAGIXIsw4CQEIIHb0AQhAIAQBxC5EmHESAhBA7OgDEIBACAKIXYgw4yQEIIDY0QcgAIEQBBC7EGHGSQhAALGjD0AAAiEIIHYhwoyTEIAAYkcfgAAEQhBA7EKEGSchAAHEjj4AAQiEIIDYhQgzTkIAAogdfQACEAhBALELEWachAAEEDv6AAQgEIIAYhcizDgJAQggdvQBCEAgBAHELkSYcRICEEDs6AMQgEAIAohdiDDjJAQggNjRByAAgRAEELsQYcZJCEAAsaMPQAACIQggdiHCjJMQgABiRx+AAARCEEDsQoQZJyEAAcSOPgABCIQggNiFCDNOQgACiB19AAIQCEEAsQsRZpyEAAQQO/oABCAQggBiFyLMOAkBCCB29AEIQCAEAcQuRJhxEgIQQOzoAxCAQAgCiF2IMOMkBCCA2NEHIACBEAQQuxBhxkkIQACxow9AAAIhCCB2IcKMkxCAAGJHH4AABEIQQOxChBknIQABxI4+AAEIhCCA2IUIM05CAAKIHX0AAhAIQQCxCxFmnIQABBA7+gAEIBCCAGIXIsw4CQEIIHb0AQhAIAQBxC5EmHESAhBA7OgDEIBACAKIXYgw4yQEIIDY0QcgAIEQBBC7EGHGyVECaUf9/4Fq3xgMqu9DJwYBxC5GnPFyhED6pP57l/pH15fgnQqg/hNA7NYtxulKOtRF1a6ttofaDdU2qV1I7U9qJ9ftJF1cv1u3j+VAMxBIP9abrlW/USO86oQZDsJbOkYAsZsoYMkitlvdrqKvu6hdWu1y9VcLnH8+qf1RL3yN2tt0oS1N+iZet14E0sd1pLvWR9usGHx+vY7MccolgNgtG5tkYbuZ2u3VbqN2vSlD+G+9/pdqFjKLosXQgrmc+TU/UDtGF91npvwcXj4TgfQJvW3v+q2KTfWTmQ7DmzpFILjYJd9ienRmcbOg+a/9HdQurubfrWS/r8XMX8+pBesr+mqRO1sX0F/+/+b8OQ9QO1DNAro9+5F+8QW176h9W8f4Zqd6U2dONpnxbevTvYY4n96ZU+dEZyYQTOyShW0/tT3VPHLbpLa9EZeh+lmbH177edsZar4ovqsmIWuL2TT8kx6I5+dFfq73tFXe+SX9/nNqX1f7mj7zD9N8Eq/dHoH0U/1GIpftauJ6Fqz6TyCI2CU/TztKzUK3PXH7h37nZ2lb1T6wTdTm8Rc/bdFn3VzNI77dV+hyHjH69uvLahLBeZxbXy+A4WzsefLwCmLp2GM9JxBA7NKzFMPDWyLnjm1B82jJAuLmEdvYreciIp8261NvofYYtauvcgY633zLa180+qs8w4hNRCD9Wi/buX7pTmLnxxBYzwn0WOzSdRW7V6ndqY7hkr6+SO0d3fhLnkejFr591B46QT/0BewJjk+rOb3FYogtS2DkNlYj/eqfgOo/gR6KXRYJp3Xcpw6fR3KvVDtMndqzpB21POrzQ/Vbq91OzZMoK9n39Evf9n5YfnviBBsSSP6jsJfa38TGqymwAAR6JnbJAmeha3LefLEfrQ7t0U7PLN1DDt1L7YAJhM/PIi1+nu09UTycZxbYhmKnP4TVxQKDCOV6T8Quz7K+TG1LK3rP0/cv7PZobtK+mG6pV95Zzfl8/qqH7ivan7eJ3uBnar7lDTbyG+bZnSvfLzUpZV7XbQI9ELvkpN+31Be6o+F0kceqE7+726FZy9knPXQf3K1ud9dXJzavZH6+9yG148Xti2v55G68N31E53lPNY14q8t245w5y7US6LjY5ZlWp5Q0tqRv9lUHdi4cNiSQn/e57armW1+PhFcy3+6+Xe29/UxxSf5D6CTvX8g/M8ECEOio2KVLKDZaV5rz5hpz4q8uZGYhV++3yatE7q/mGWvn+K002eGlbJrBHrxfbE9b/dhdeEX6oM7Sz3e1UqW6SRfOmHNcO4EOil2uLqIRR16z2pgnIHTxVr6FxaYmkPxHwxe/20qzk3q+5/Sdyvl9HbZk8X6QmsS7umaHHeHUpyDQMbHLExGfUrtRy8fj1GEfNoXPvHRVAslpGS5uafG7/DIvd4kqT3Aoj7GLxS+HKyi0/K5a7ZZ+VVq8oBsEOiR2+db1q2rtCiTOn3t6jBnXRXWodEd9sp9v3VttuVle//HR8rrqjYs6w+k/d5h6olnparXJm+kPzzuKJNARscv15HxRtW9dfXEdhNDNs18lr989RM3pLeOmh/2DY+vRnlNbCrbhMzuNUKvV0nQK9oNTm4ZAB8Qul0fyZMSDW469T9/vj9BNE+r1fG3yul3f4j5RbdMyR3a8VNGlcjJzgTYs3klScYHR2ahT6oLYjaeXqNSRa85RqWKjOsV0x81pLV67u2WZ93mlxhGKlTa2KcmSJ7R8e/5fNf0xrVJJZ8e5bAyBwsUuX0i+YJqyTEv6XqkSlQtm9tw8GdMlP3N1Z4++D1Ybn9HV+lxXnqlOKSNow2d2Pp0duEMoIyobfRYFi12eeT1TzRMTNi/o10L4yvl0PbfkRGmPaJX8Wul2vUuWrqyzdcVnl9UaT9hVrl5ewrfgpO8RsVOOYfX3LhHmXGcjUKjY5QkJL1tyNWGbq5X4GZ2f1QWw5L1Mm1lnLVTv6i17erT8eIHaePqK01aOlF+uKbgAS67+vLn+YOrZLSACi/jIUsXOi/p9O9SYRwMq0RTFkgXi0Npbp9a8vNue50IFz1XzOt22vU7/sX9zHlkl7ybmMlm2q+rzXcAV6zmBAsUuZ/N7hURj3ofBExIdrkU3bS9KHtE2m+34+aQ3cu5BMc7kpVkenY9XYX61fqZWeZ+POVjaqg9pNj7SCoq+LIObA7oOf0RhYpeXgvk5XXtCQjldEfdbSE6g9qY8NldXdt26nlj+g+aRu0d8jVnMX6Hm4gNLG+tocs5mU8Fa64MrFz7Aek6gILHL+XS+nbhizdwTEl7Y38PCm6v1qlxt2TOXTfmhnuaDpVvJxzertVfFeCTrmdvXr0Zp9t+PTFBoFF19a/Zj8c6uEChJ7Lwiwg+0G+vBs6pZukEWfafbNCOP5iCX0UXZw0IHyRVXXHXZs8/tCiSevHicfNb+uettwzw7H1hl7iuPorGeEyhE7JIr7LZvJbRHQDV+sfc8FI17I5MTzQ+V/FpdsP8A0jPkowqvjqzKcGl9LUOrnLayTjasVOzjaXRZOVEd6zmBUsTOy4u21Kydg+UOGHAvz1x1eblKwR3Mt1vLlZOerHf7md4u9VH+pa8nqGmlRuVVD2u0kZGdJiq6XrJqjTiCvL0Ascu3bV5E7skJm1dIBEgcHu9heXLG+XXjJYe8H6xnYwPNRptNfm7pdJUDW6R+q+89YeXNg9ZgIxMUSkGJUIp+Dbh68tYSxM4X+W9qnkvqeONpCT1BvZIbWfBdPdf7IrTNo1uL/6kBIGzHxTyJYdHzqgybR3lalla9Z3YmI0nFm3Us591hPSdQmtjp2Unlzh3Mkm/ZnEg9bhrVVC6bhA3y87yX1CA8yn2K2Lx2NjAjYqdCsKWs2Z3NG941GYESxM6jmvPUnFu3FG9kl5x24QTiJrewiVyw53STdNjk0Z2LCly4fvWT1F+ckDylDUs8+X276xg/nPIAvLyDBAoQO1NL2vgkl1p3aoXWUUZ5PpWrL1voPBvdNol+lOou01416aZ6h2dom2ebSlupPjbdUUZWUFxH7/dzUaznBEoRuy+Ls/KdBv/Z1on7mE+2XE9Kb9BPHzP2G9+ieXmcl8lhyxLIa223qnk07AKhrobjXdAmtOQk4ianj5HdhNS6/rJSxO5dAukNXmxBZmOTJyO8WfO4BSt6MOsllPbROz2pcwE1z2LfWILnP5YTWPJsv0eINgoBTECsDy8pReyeIJivqYF6S8Sel3LKtfp8gTbpNk1f8mjOqRUBcwxnuZzS8/WuphqOagBWz5nsKMOk4r/p9dqDovrrZO/jVV0mUIrY+cGzl0jZPMvmXcN6bMlVXdobfNvXv6g5n26px46vs2vpIjrgV9R8S+rbf62rrs5Z/UOS8/WaGnsWO28NifWcQCli5xlJj3RsErpKgtdXS1vkmVeMjBtpJjOFPO2tt3nCwqa7g8qbAK1gOafRuXqNXUvv+elMH82bOkWgFLFrJxZ/VJ1P1U76aGmTvPLM8/hepT32eR5xHKaS+Hb0Guo/TZL6Mh+ey8b/qvWLG+r1a1yRMQ8f+Yy1EihE7OxG8qyaRWCrOp9mI/toI8msjYOu4+bb1wCbCG1UTHNR0KZMk2riVdrGcXuWJG6D9h4YWo9cORsA6zmBksSuybVTR6w0s9Y3S+1JmLZzd5O/zW1Y35yeoz/Jk1r3U/MfTc+wbmfSIXkLxXaNRE8IBayZOMfQFPJRJYmdq3246ocKeFbqrH2yXMLKYj6+SkJ7S1Sq24etnUCSaA1Oqo/zIHE9fvljJqc4OdWpsbvota5cjPWcQEli18xQahVFpUKVfbH8QNyrJLxCpG1e3O+cQtJM1i3UyZtxi+ngNDU/i1tmI5/0VP3u6NZHaqRXfXbdToEDFUugJLFrato5heCS/RGBXJvtmLEeYIFzzb4F759abL+c8cTSA/RGrSnO9hDxffv5D5Reqp+1R9NORiYOMxLv0ttKErv29oE9KUGeb1+dUuPRXdsO0gU2Y8WOLnWveZ9rHkWfpbazmkbOlSZ+xi254vF965+6EKjXYk+QmzdvX/i89SZQkti1R0Cqadf15NrkmWVvxjx++/oh+bbvegeS4zUERkpBPUqs3zLKJrnCiRb/ZztXTXGqEvz6T6AksWvPVvbg1iL5InvkWBda0v+dZuLVEtiGEMijOz+z26TmdJ4b/D/vLrk0lEdxO9YfrWd8VXs7xw05Iw5aBoGSxE7VZwfNM5aOFwNIFrmxEUVeDubqHDwf2vC+nzQb6712sx0p5ods+zbtqn+W1Jp+r4KplYuCYgEIlCR23k2sSQFwiaOt3eSffNvqrfnG00wCFDgoJWLJ7J1krA2wB34upyVlzqU7X6WZZ+vnLy7lrDmPjSVQktjtUYuEPe6oMORNYpwvuGksbFxUG9uPlzn6yKoKJxq7XqKXimmbzqHtJrE7Y+6nxgcuhEBJYucRkRNvbdo7tPKm2R2yPCHhkal2mB8xV3Dxht/BdgcrIXTJo7Zn1mfiXEdPgjVLw7RPceWRHxaEQElit0nMz6y5Wxy0uqArlm+bXEiy2QGrOXEvYTqgPzmDXYlHc55pB33nGfE965+crq8azWV7q+LyiK55xPnOTqAksfN+DN54x6a/yJVu/bpiy868KsUk344zoltoGJMS1AeOxV5jp6Fy+NWbFnpqfPhcCRQkdvZ7WPlECbeVEm9Lt5zmcKja4WNn6ix+j+gQuiJCmHbSaXgW3M9UbSQTFxGX+Z5EaWKn5yh5p62OJN6mI5YRuuP0Mz9zZM3rfPvyKp+WVKQzb7btiTA9x+t76f+i4BdxMqWJnZ+vbFbT1nZVk+VeBKjzn0RqL29rfk0Vk0KjxWlBoDSxa1YdeFTk9bGFjo6SklEHB7e6j8/Te2d0bAaZCwACcQiUJnbtlQeFLhk7n9B5Y+/9JXQU4Ixz3eBpBwmUJnZ+XufndrbCdhnL6SXe7rG93nWr/u+JCBUcxSAAgZIJFCZ2RpW8WYo34ClokiInDLve3n3qYHqW1besFmRmXEvu4ZwbBGoCJYrdG3RuyoHKC+e9l4BvExdoeUNrT5x4u0ebK2l420PnbmEQgEBHCJQodptrcTHCBa+kyMU3vdbVgmezwD1s8QLckd7FaUKgIAIFip3ppGanMY+iPLpbwKxs2k+f7Y1ZnDjsz3d14WMLih2nAgEITEGgVLFr17ZbQO7ayLaHnmX1bSuTEFN0LF4KgdIIFCp2I6O7OW5Ok5/Pqdjj4OFqrnarXagYzZXWaTkfCMxCoGSxaxfB1IqKgfPuNvB2NnnPWldK3qTm1RGv1+edPQtU3gMBCJRHoGCxy6O7Z+mfo2psH9VXVxFZZ8HLozmviNiiZlF13tzJ5YWKM4IABNZCoHSx8+SA89v8DM92nIRIs6HrZXkSwmLqGmc6dp6EYDOc9cLLcSBQEIHCxa4hlZoCAf7BiWr3W1syb3LOnFdDbFbzjK+Xe2mPAgwCEOgrga6InVcwvFfNm/LYXAHY+W5TjsKSS6a7TLdHdF754JneDhUJ7Ws3xC8IbDyBjoidQeQlWx593bTG4lSQw9RUKHOl53jJFZAtbt5erxHL4/S9E5Y9qsMgAIEABDokdk00kksreba02arQguXKwKeoeWmZm4XRqx/uqOZZVj/780jOI0Lv9LUUILa4CAEItAh0UOx89nnLwsereQ2thW0l+5J++c5tQsdIjt4PgagEOip2TbjyHhB+DuecvF1q4XNqys/VvOeAKx5zqxq1d+M3BLo/siOGEIAABKYj0PGR3XTO8moIQCAuAcQubuzxHAKhCCB2ocKNsxCISwCxixt7PIdAKAKIXahw4ywE4hJA7OLGHs8hEIoAYhcq3DgLgbgEELu4scdzCIQigNiFCjfOQiAuAcQubuzxHAKhCCB2ocKNsxCISwCxixt7PIdAKAKIXahw4ywE4hJA7OLGHs8hEIoAYhcq3DgLgbgEELu4scdzCIQigNiFCjfOQiAuAcQubuzxHAKhCCB2ocKNsxCISwCxixt7PIdAKAKIXahw4ywE4hJA7OLGHs8hEIoAYhcq3DgLgbgEELu4scdzCIQigNiFCjfOQiAuAcQubuzxHAKhCCB2ocKNsxCISwCxixt7PIdAKAKIXahw4ywE4hJA7OLGHs8hEIoAYhcq3DgLgbgEELu4scdzCIQigNiFCjfOQiAuAcQubuzxHAKhCCB2ocKNsxCISwCxixt7PIdAKAKIXahw4ywE4hJA7OLGHs8hEIoAYhcq3DgLgbgEELu4scdzCIQi8D9LV3r27liLeAAAAABJRU5ErkJggg==', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 41 5503 +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 609 +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 41 5503 +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:13:17] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-22 15:15:21.760789 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-22 15:15:21.760789 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-22 15:15:21.760789 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-22 15:15:21.761795 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-22 15:15:21.761795 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-22 15:15:32.971953 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-22 15:15:32.971953 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-22 15:15:32.971953 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-22 15:15:32.971953 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-22 15:15:32.971953 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-22 15:15:33.025549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:15:33.028904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:15:33.031813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:15:33.035668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:15:33.041025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:15:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:15:33.053230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:15:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:15:33.064805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:15:33.066255 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:15:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:15:33.078971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:15:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:15:33.084381 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:15:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:15:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:15:34.179518 : Get_List_object_owner_collection_Stored_Files Il manque des informations obligatoires +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:15:34] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:15:34.287038 : Get_List_object_owner_collection_Stored_Files Il manque des informations obligatoires +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:15:34] "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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-22 15:17:49.075383 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-22 15:17:49.075383 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-22 15:17:49.075383 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-22 15:17:49.075383 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-22 15:17:49.075383 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-22 15:18:00.704000 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-22 15:18:00.704000 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-22 15:18:00.704000 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-22 15:18:00.704000 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-22 15:18:00.704000 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-22 15:18:00.747613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:18:00.749978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:18:00.752982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:18:00.755982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:18:00.759480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:18:00.763939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:18:00.777777 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-22 15:18:00.781320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:18:00.788664 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-22 15:18:00.795114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:18:01.620634 : Get_List_object_owner_collection_Stored_Files Il manque des informations obligatoires +INFO:root:2025-01-22 15:18:01.620634 : Get_List_object_owner_collection_Stored_Files Il manque des informations obligatoires +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:18:30.748716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:18:30.752319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:18:30.756445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:18:30.762507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:18:30.775945 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:18:30.780000 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_pLKCmWKVFgQt8O message='Dashboard link for request' +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_mSTmONpXjJj8Z5 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:31] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:31] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:18:31.874807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:18:31.877332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:18:48.255199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:18:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:19:10.894538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:19:11] "GET /myclass/api/Get_Stored_Downloaded_File_From_Id/Q5O6EkhqE7r_Ys0p3-bpIhX5vmM0NaoyJQ/6790fcfd46ae0c5adb26d660 HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-22 15:23:04.427329 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-22 15:23:04.428403 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-22 15:23:04.428403 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-22 15:23:04.428403 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-22 15:23:04.428403 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-22 15:25:46.723613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:25:46] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:26:05.145958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:26:05.150203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:26:28.321786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:26:28.324963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:26:28.328902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:26:28.330895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:26:28.335998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:28] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:26:28.343611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:26:28.349812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:26:28.354811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:28] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:28] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:28] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:28] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:28] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:28] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:28] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:26:30.630694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:30] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:26:32.385960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:32] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:26:37.595521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:37] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:26:39.329517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:39] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:26:45.741902 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Colas Rail 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 22/01/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_39949.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Colas Rail 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 22/01/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_87954.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:48] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:26:48.360504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:26:48] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:27:41.236787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:27:41] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:28:13.083498 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '


 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Colas Rail 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 22/01/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

\t
Signature Client

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_Signe_22_01_2025_51.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPUAAAD1AQMAAACyfyEmAAAABlBMVEUAAIv///+fga7nAAACaElEQVR42u1ZMY6rUBAbPgUlR+Am4WJIIHExuMk7QkoKlPm2Z3f/r7ZbrYukiCCvsTxjj98k8tvPFe/z9/nPnj8josMzv9oVsebwGm/8iKfrT3z/+elz4lszz+cy8W3CU99ixqsOLPAtMZy5TdcMQIC2NvI3ReeE7ynqlmlI8HeRPy98uWe+xg0/jNs0HFb8qf/A3xFgbc47xKRP/1G/LO35/5ePfj8+LeUqc5X70388+BtU2gf6D5g20gmRPEYTfD2kwSew1oBU/ryRSZP+gyFH9HC90gdAZu4stwl/C6xZ1NFVNDoOmIwNf7Q+9F+AtXsqOUO67epM9AFBDCnWgq6CqtKpOUlc/LkB2trYekkSOe56PtnoFwO3b5gaygdLCO7gog9olVOXhgKQySSj0dvZ8NdUZADa4p//+fSfshTz6bhn+d9Z4y5d5i8IE7TtKyng4OWTD0DYTX9ZOen6LGsOF/5gKJi/U6V6hITpolyG02V+bIFbW68hUqUlncGZ56KPKvIxpkya0tjTx/+QBeR1j9DUAJ3yP5v8zCzFgcGqVpGPCKv+0/1X+U/Wp5swy+2S70vEvHXApPF0jEb5lFrtxB/8hUzW/YNx3yVflVaZSjV/cTW6WW6r/Qvz846kVdZHEdv4X8BaFm0NoqRh5X/KehAJoOFV0vjaCdrsD3jJ7JhUH59N6LOf1P5FgBRd+lbrBJv+4/6K1jcz2nOrIen69F/tJ+tWlNwEqh2HM53wobSP2orHh/XNVvtdLYmWSdRpXeTDn/an9a8C8S2Fz2e/Jv32zH9gTdaszHU6+d/7/6v3+W+c/wVUI7vb8d9UlwAAAABJRU5ErkJggg==', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 616 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:FileObject '', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='c', netloc='', path='\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__', params='', query='', fragment=''), 'c') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Unrecognized scheme, assuming local file path +WARNING:xhtml2pdf:Need a valid file name! +'' +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 616 +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:28:14] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:28:42.475996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:28:42.479152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:28:42] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:28:42] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:28:56.144597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:28:56] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-22 15:29:45.548634 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-22 15:29:45.548634 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-22 15:29:45.548634 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-22 15:29:45.548634 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-22 15:29:45.548634 : ++ 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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-22 15:31:20.886131 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-22 15:31:20.886131 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-22 15:31:20.886131 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-22 15:31:20.886131 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-22 15:31:20.886131 : ++ 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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-22 15:31:52.943846 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-22 15:31:52.943846 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-22 15:31:52.943846 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-22 15:31:52.943846 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-22 15:31:52.943846 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-22 15:32:00.565271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:32:00] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:32:02.187836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:32:02] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:32:06.433698 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Colas Rail 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 22/01/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_07576.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Colas Rail 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 22/01/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_85975.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:32:09] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:32:09.823336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:32:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:32:32.294776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:32:32] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:32:51.835685 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '


 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Colas Rail 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 22/01/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

\t
Signature Client

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_Signe_22_01_2025_62.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPUAAAD1AQMAAACyfyEmAAAABlBMVEUAAIv///+fga7nAAACV0lEQVR42u1ZMY7jMBCbnAuXfoJ+Yn8sgAP4Y85P9ISUKgzPkZRze9V2i2URF0JsNQQ15FCTyG+fFp/9z/7P7r8i4pZHwZK1Raw5ntOBj/jV/sT3z0/vE9+a+cTCt4JfQ43ldS/asMB3j/GZWwLVqqWSP9DphA+oQJ1YG2ojf1748oir6qZHGXcr/lR/EeMeYG0B0jeTJvioXwAan/8vPvrtz5Z5qULH/fYfD/5wtFFiZullPkgnRDJP6cIfpIEVrNXcuz8D5PJyOV+iitJdb8ErSNxqnpPN+baZrEG/0VvHjpN24g8FF/I/1N9Ln9fabi76AE1zkDXyF6zEU0rx8We5Cq259E6CkJCji78kam2Ogf13VXQJiriOLvqAVscODSZN/ytNrdem/u4FXnxEo0i+/M+m/viw6+JlyCb/k1OfVv1D+fQrKWDjtMkHVanlOlqQ2K05XPrHQFTXragxJADaQ5naxF8oDfGn+1H0OM1KtOlv8D/03ymr8kGyHH38L2XNbHLqGqKT9Wdz/yVhRz9VNuHCuOpTfzQUBiqIhNbCIQL1y+M26r8M+RPnG2Ryn4zyaQrQUa78975/MO7b3H8BsjSlUqliFtxwmm8MvHVc+Q/WRxH78AeuIvoQ66ZXJ/8jfzQUsZaSxjUTTJ/5QY8uAzsJojOTgs988kpVuBptqflknxQZ1R+8RFdzOuGU/+JMGum334qIdEsl/dHG/zo+Usf8p0kHS2/xmu+mAr0mCXmGE3+anw4quMqk2vHZzNe6ftXVttqtWfOrp5P/ff6/+uz/xv5fm1O2xAwAa4oAAAAASUVORK5CYII=', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 599 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATsAAADICAYAAACXrUbEAAAAAXNSR0IArs4c6QAACqpJREFUeF7t3b+uJMUVB+AayQ/gzCHmDRw6QILNcOaQxDJkZE5AcgaECAebOWQRgWM/AbtPYDlz5rVEQMgDWBrfGk9fTd/dnZkzU91zz55vEsRSXV31neK3/W96Ns2HAAECBQQ2BeZoigQIEGjCziIgQKCEgLArUWaTJEBA2FkDBAiUEBB2JcpskgQICDtrgACBEgLCrkSZTZIAAWFnDRAgUEJA2JUos0kSICDsrAECBEoICLsSZTZJAgSEnTVAgEAJAWFXoswmSYCAsLMGCBAoISDsSpTZJAkQEHbWAAECJQSEXYkymyQBAsLOGiBAoISAsCtRZpMkQEDYWQMECJQQEHYlymySBAgIO2uAAIESAsKuRJlNkgABYWcNECBQQkDYlSizSRIgIOysAQIESggIuxJlNkkCBISdNUCAQAkBYVeizCZJgICwswYIECghIOxKlNkkCRAQdtYAAQIlBIRdiTKbJAECws4aIECghICwK1FmkyRAQNhZAwQIlBAQdiXKbJIECAg7a4AAgRICwq5EmU2SAAFhZw0QIFBCQNiVKLNJEiAg7KwBAgRKCAi7EmU2SQIEhJ01QIBACQFhV6LMJkmAgLCzBggQKCEg7EqU2SQJEBB21gABAiUEhF2JMpskAQLCzhogQKCEgLArUWaTJEBA2FkDBAiUEBB2JcpskgQICDtrgACBEgLCrkSZTZIAAWFnDRAgUEJA2JUos0kSICDsrAECBEoICLsSZTZJAgSEnTVAgEAJAWFXoswmSYCAsLMGCBAoISDsSpTZJAkQEHbD1sD21//vavNyWJc6IkBgmICwG0K5/bK19sW+qyetbZ4P6VYnBAgMExB2Qyi3P7TWPth39VVrmx5+PgQIPCIBYTekGMJuCKNOCCwoIOyG4G6/ba197MhuCKZOCCwiIOyGsDqyG8KoEwILCgi7IbizsPuktc2zId3qhACBYQLCbgjl7DRW2A0x1QmBsQLCbojn9mlr7U/7rv7e2ub3Q7rVCQECwwSE3RDKWdh59GSIqU4IjBUQdkM8t/1ObL8j2z/PW9s8GdKtTggQGCYg7IZQCrshjDohsKCAsBuCu+3fnujfonBkN8RTJwTGCwi7IaazsHvZ2ubdId3qhACBYQLCbhjl9t+ttf2bT9q73n4yDFZHBIYICLshjL0Tz9oNo9QRgQUEhN0w1Nlrnl7cveZpegvKsD3oiACBywWE3eV2D7bcftRa+9v+Dz1+MsxVRwTGCAi7MY77Xly3G8qpMwIDBYTdQMwH1+18k2Korc4IXCcg7K7ze3gqe/i8Xf9v7soO9dUZgcsFhN3ldm/YcnYq6w0ow311SOAyAWF3mduRrXx1bDipDgkMEBB2AxBf7cKNikVYdUrgCgFhdwXemzf1gPEirDolcIWAsLsC70jYeZnnIq46JXC5gLC73O7YdbvPWmvf7Bt4wHgRY50SiAkIu5jXma23/YUA/cUA/SPszlTTjMCSAsJuMd3tVtgthqtjAmEBYRcmO2eD2ZHds9Y2n5yzlTYECCwnIOwWsRV2i7DqlMAVAsLuCrzjm94/a+fNxYsZ65jA+QLC7nyrYMvZs3a+IxvU05zAaAFhN1r0vr/Z18a+u3tNe/+5RR8CBG4kIOwWhb+/I+tUdlFnnRM4LSDsThtd0WLbf15xej27N6BcIWlTAtcKCLtrBY9u7ycWF+XVOYGAgLALYMWbzh5B6Zs/ufshnufxfqpssfvLoZ/yv6wyY/NcT0DYLW49uyvr2t0bvd29XnwpFt+BsFt8AbxydOfa3cx8d9f6i4MfGHcEvPiarLkDYbdK3Wc3KvopWj+ddao2/2HxXolu0n+o6NkqZbGTUgLCbpVyv3J0V/T7sjuHT1trv7oLtofPHfZrmf2o118Cq6zJejsRdqvVfPvl/nRtOoLp/2MXuVmxu/HQT1Wnx3AeqvvZydXWYd0dCbvVar87qvn24H/4t/w9d7v5TtfjjikLutXWYO0dCbtV6z977q7v+fPWNn9ZdQiL7+zkUdw0gh9ba3+oc3S7OLwdnBAQdqsvkdkjFn3vb8FLAs4+ipu0/9Va+53rc6svvtI7FHarl38XDP9orf1yv+t+57GfyiW8MB8OuT7H/lKEfv3Sh8CqAsJuVe5pZ7ObFf0Pk1232oXcX1trH57B1wOu34hJGuhnzFCTFALC7mZlmj17tw+81h9JeaRHeOGjuB5wLxzF3WyB2fEDAWF3syWxC4/+VpT+z+nz1d2/P7LA233D4Y9HHhvpY98H2+6h4P6VuCKP1Nxs8djxBQLC7gK0cZu8NvC+bm3z53H7uKSnk0dxPcz+eXfd8enjPRK9ZN62eZsFhN3Nq/umI7y1L+LfB9w7r/l2Q1dyc+Hma8UArhEQdtfoDdt2FzTft9beO+iyHz19t/+R7SPX8XbbTqfC/Z99u9/efS3rp+OvS9pt1z/9NPX9499ueGyn1sPgdVRIQNg9qmK/8gzeNLr+AO5/D4Z6eJ3v1AymoDwMzCkge5+/eE0HjuJOqfrv6QSE3aMr2WtfebT0KKfHQ/7j7unS1Pq/lYCwu5X8yf3en572Z9n6W0IOT1enraejtRf7P5j+/TettZ/3f9avwfXP4dFgb9e36d/PfaSPupwE0oBASEDYhbg0JkAgq4Cwy1o54yZAICQg7EJcGhMgkFVA2GWtnHETIBASEHYhLo0JEMgqIOyyVs64CRAICQi7EJfGBAhkFRB2WStn3AQIhASEXYhLYwIEsgoIu6yVM24CBEICwi7EpTEBAlkFhF3Wyhk3AQIhAWEX4tKYAIGsAsIua+WMmwCBkICwC3FpTIBAVgFhl7Vyxk2AQEhA2IW4NCZAIKuAsMtaOeMmQCAkIOxCXBoTIJBVQNhlrZxxEyAQEhB2IS6NCRDIKiDsslbOuAkQCAkIuxCXxgQIZBUQdlkrZ9wECIQEhF2IS2MCBLIKCLuslTNuAgRCAsIuxKUxAQJZBYRd1soZNwECIQFhF+LSmACBrALCLmvljJsAgZCAsAtxaUyAQFYBYZe1csZNgEBIQNiFuDQmQCCrgLDLWjnjJkAgJCDsQlwaEyCQVUDYZa2ccRMgEBIQdiEujQkQyCog7LJWzrgJEAgJCLsQl8YECGQVEHZZK2fcBAiEBIRdiEtjAgSyCgi7rJUzbgIEQgLCLsSlMQECWQWEXdbKGTcBAiEBYRfi0pgAgawCwi5r5YybAIGQgLALcWlMgEBWAWGXtXLGTYBASEDYhbg0JkAgq4Cwy1o54yZAICQg7EJcGhMgkFVA2GWtnHETIBASEHYhLo0JEMgqIOyyVs64CRAICQi7EJfGBAhkFRB2WStn3AQIhASEXYhLYwIEsgoIu6yVM24CBEICwi7EpTEBAlkFhF3Wyhk3AQIhAWEX4tKYAIGsAsIua+WMmwCBkICwC3FpTIBAVgFhl7Vyxk2AQEhA2IW4NCZAIKuAsMtaOeMmQCAkIOxCXBoTIJBVQNhlrZxxEyAQEhB2IS6NCRDIKiDsslbOuAkQCAkIuxCXxgQIZBUQdlkrZ9wECIQEhF2IS2MCBLIKCLuslTNuAgRCAsIuxKUxAQJZBYRd1soZNwECIQFhF+LSmACBrALCLmvljJsAgZCAsAtxaUyAQFYBYZe1csZNgEBI4H8DxADYhaTcDwAAAABJRU5ErkJggg==', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'sRGB' 41 1 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 54 2730 +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 599 +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'sRGB' 41 1 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 54 2730 +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:32:52] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-22 15:35:32.830902 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-22 15:35:32.830902 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-22 15:35:32.830902 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-22 15:35:32.830902 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-22 15:35:32.830902 : ++ 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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-22 15:36:47.657259 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-22 15:36:47.657259 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-22 15:36:47.657259 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-22 15:36:47.657259 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-22 15:36:47.657259 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-22 15:37:17.908282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:37:17] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:37:21.426413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:37:21] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:37:24.826331 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Colas Rail 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 22/01/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_05513.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Colas Rail 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 22/01/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_29989.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:37:27] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:37:27.260253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:37:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:37:51.957514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:37:52] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:38:03.326122 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '


 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Colas Rail 

\n


Formation :  MySy Licence Informatique 

Durée : 36.0   mois (s) 
Lieu de formation :Bertrange 
Dates de formation : 10/04/2025  14/04/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 22/01/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Colas Rail 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

\t
Signature Client

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_Signe_22_01_2025_69.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPUAAAD1AQMAAACyfyEmAAAABlBMVEUAAIv///+fga7nAAACV0lEQVR42u1ZMY7DMAxTLoPHPME/ST5WIAX6seQneUJHD0F1pOQCN3UrjkM8BHa9CJRI0ar5x9Xsur/uv3v/NLPBT2uDP45mtnp5TSd+xK792Of17XvGt7rvz/HA4VZztzyx44VEfDcru98rolqdn4P4VRuU4sMH0N1qceDXiJ9WfMDPAzWb7rVsUvhl/XnZbCRnzkRSp/7IX6Z2//vR4W9fwQpj6THdb/3RwI+pPWyeHsi03wknSDJPIvGNztAOoHZaeaU+I8hFhr9QZbKC/G0LM+3oJDiq4IdYkF8GWbN1bFOXaxF9Ca2LrlGCzqDugXbsKvrcZjOghv4LfUZYL4q0iv6BsI3+xRZ/oP+SJCHXroNfFmGo8sDjZmESNOIjahaCgh3hrC1ar0r9UUs8/Gkqdde/ouP/0rXgMLL+nErtSvrnafgW4Ne6U8DFS8Uf9FcHWeFUak9pNhV+RK8FauFPZ2S6kS4AcZXpb4wl8LMgCdsxO7EMf8O10NVTVUiNhxchfpAQNZvcHu0k6k+HH8QqVQX+D5W4menUX/CX1iVCY5CN/EW6XUafZ+uvDig1/ME2KfnTlfy1ri/D+/3hu4p/Wdk/xiAEXkVkxZzp1vHPxvcRncxb+sITyuCH+lu7/1vS6Svp362rHlBjEdJu5UzQdeYHIEm+ylmEYQJ15pN9/sIiZCcZGR/nazr1530+iTOnGu8hgmvNJ9O/gMStmxip+Gj96P/MuvQtUvPdkdbZMsncCeEX89M+38j3L+PTma8Ff9HfMrUkcXjWXUn/rv+vrvv/uP8FiKazx/p6E+EAAAAASUVORK5CYII=', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 599 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:FileObject '', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='c', netloc='', path='\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__', params='', query='', fragment=''), 'c') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Unrecognized scheme, assuming local file path +WARNING:xhtml2pdf:Need a valid file name! +'' +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 599 +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:04] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:38:22.518066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:38:22.521065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:38:22.525732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:38:22.535395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:38:22.539939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:38:22.542363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:38:22.573201 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:38:22.580144 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:38:22.787397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:38:22.791538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:38:23.835039 : Get_List_object_owner_collection_Stored_Files Il manque des informations obligatoires +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:23] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:38:23.836034 : Get_List_object_owner_collection_Stored_Files Il manque des informations obligatoires +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:23] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:38:26.689326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:38:26.692754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:38:26.698533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:38:26.702001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:38:26.708025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:26] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:38:26.718041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:38:26.721053 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:26] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:26] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:26] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:38:26.757199 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:38:27.575547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-22 15:38:27.578542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:38:35.235431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:35] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-22 15:38:40.659850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Jan/2025 15:38:40] "GET /myclass/api/Get_Stored_Downloaded_File_From_Id/Q5O6EkhqE7r_Ys0p3-bpIhX5vmM0NaoyJQ/679102cc46ae0c5adb26ed5c HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-23 08:55:13.039490 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-23 08:55:13.039490 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-23 08:55:13.039490 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-23 08:55:13.039490 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-23 08:55:13.039490 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-23 08:55:25.122679 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-23 08:55:25.122679 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-23 08:55:25.122679 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-23 08:55:25.122679 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-23 08:55:25.122679 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-23 08:55:51.377359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:51] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:51.668220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:51.671745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:51.675750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:51.679977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:51.686979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:51.691459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:51] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:51] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:51.734365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:51.739364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:51] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:51] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:51.778910 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:51.779911 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:51.855564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:51.859578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:51.865083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:51.870927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:51.906800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:51.922411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:51] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:51.970969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:51] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:51] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:51.990988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:51.994986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:52] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:52] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:52.037279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:52] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:52] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:52] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:55.288313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:55.291312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:55.296541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:55.301866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:55.310715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:55.315439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:55.319497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:55.323500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:55.330185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:55.338431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:55.344906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:55.350645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:55.358735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:55.372510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:55.392258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:55.406080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:55.409080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:55.420721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:55.423744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:55.440345 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:55:55.456844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:55:55.463852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:55:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:03.616446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:03] "POST /myclass/api/Update_SessionFormation_Only_Step/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:03.687570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:08.876538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:08] "POST /myclass/api/Update_SessionFormation_Only_Step/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:08.920681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:12.527173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:12.530392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:12.535082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:12.539368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:12.541405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:12] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:12.553565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:12] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:12.558176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:12] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:12] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:12] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:16.874007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:16.877485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:16.883516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:16] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:16.890205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:16.893626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:16.901627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:16.909627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:16] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:16.921655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:16] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:16] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:17] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:17] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.307599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:25.312201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.317348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:25.322350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:25.326866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.336614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:25.338635 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.345639 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.540506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:25.543504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:25.548273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:25.553220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.559726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.568547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:25.574920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.580950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.587867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.594874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.599129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:25.605573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:25.611574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.626169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:25.631291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:25.635439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.650383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.661333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:25.667084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:25.670386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.684033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:25.692183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:34.461348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:34.464775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:34.468826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:34.473867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:34.477842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:34.485152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:34.486499 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:34.500535 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:34] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:34] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:34] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:34] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:36.452519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:36] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:50.970928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:50.974928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:50.976927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:50.977927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:50.982640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:50] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:50.995814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:50.999297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:51] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:51] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:51] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:51] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:51] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:51.303192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:51.305275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:51.341002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:51] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:51] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:51.441883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:51.443902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:51] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:51] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:56:52.919582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:56:52.922693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:53] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:56:53] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:57:01.734525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:57:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:57:13.436854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:57:13.440219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:57:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:57:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:57:24.874194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:57:24] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:57:28.816578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:57:28] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:57:41.429131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:57:42.205908 : login Login/mot de passe invalide {'email': 'mysytraining+client1@gmail.com', 'pwd': 'epnmirub', 'active': '1', 'locked': '0'} my_user.count() = 0 +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:57:42] "POST /myclass/api/login/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:24.396565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:24.402066 : Ajout Token OK, _id = 676844924232cc852e8e93b7 +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:24] "POST /myclass/api/login/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:24.780876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:24.782210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:24.784224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:24.786228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:24] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:24] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:25.018383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:25.173403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:25.174429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:25.178589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:25.184273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:25.190741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:25] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:25.508068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:25.511096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:25.522931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:25.570832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:25.633052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:25] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:25.844090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:29.302354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:29.305734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:37.599881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:37] "GET /myclass/api/Get_Stored_Downloaded_File_From_Id/zbpfP5d_S8X76_LXhnJguIJtPqu0voG6cw/679102cc46ae0c5adb26ed5c HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:43.610025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:43.614025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:43] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:43] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:53.350548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:53.352548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:53.357382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:53.363983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:53.367559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:53.373266 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:53.379274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:53.386400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:53.389413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:53.395402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:53.399803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:53.407342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:53.416340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:53.424373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:53.427384 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:53.436858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:53.444880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:53.454422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:53.458422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:53.465566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:53.475168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:53.484974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:54] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:54] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:56.699503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:56.703450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:56.707031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:56.711285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:58:56.717871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:56.724159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:56] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:58:56.732013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:56] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:56] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:58:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:59:02.483404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:59:02.487202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:59:02.492070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:59:02.498116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:59:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:59:02.504610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:59:02.511176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:59:02.513296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 08:59:02.526396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:59:02] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:59:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:59:02] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:59:02] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:59:02] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:59:02] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:59:02] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:59:29.590796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:59:29] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 08:59:31.874793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 08:59:31] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:02:13.201080 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Colas Rail   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   MySy Licence Informatique
Durée :  36.0 mois (s)
Lieu de formation :   Bertrange
Dates de formation :  10/04/2025 14/04/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 23/01/2025
\n

 

\n

 Colas Rail 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_78961.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Colas Rail   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   MySy Licence Informatique
Durée :  36.0 mois (s)
Lieu de formation :   Bertrange
Dates de formation :  10/04/2025 14/04/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 23/01/2025
\n

 

\n

 Colas Rail 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_16381.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Colas Rail   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   MySy Licence Informatique
Durée :  36.0 mois (s)
Lieu de formation :   Bertrange
Dates de formation :  10/04/2025 14/04/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 23/01/2025
\n

 

\n

 Colas Rail 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_01965.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 5 part nom5_client  

Situé : adresse04
code_postal04 ville04
pays04

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Colas Rail   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   MySy Licence Informatique
Durée :  36.0 mois (s)
Lieu de formation :   Bertrange
Dates de formation :  10/04/2025 14/04/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 23/01/2025
\n

 

\n

 Colas Rail 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_46536.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Colas Rail   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   MySy Licence Informatique
Durée :  36.0 mois (s)
Lieu de formation :   Bertrange
Dates de formation :  10/04/2025 14/04/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 23/01/2025
\n

 

\n

 Colas Rail 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_80689.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:02:17] "POST /myclass/api/Prepare_and_Send_Convocation_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:02:17.154932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:02:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:12:23.350230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:12:23.353234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:12:23] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:12:23] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:12:30.272607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:12:30] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:12:49.423210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:12:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:12:54.707798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:12:54] "GET /myclass/api/Get_Stored_Downloaded_File_From_Id/zbpfP5d_S8X76_LXhnJguIJtPqu0voG6cw/6791f787b215e97b1968f56c HTTP/1.1" 200 - +INFO:root:2025-01-23 09:13:32.798816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:13:32.804819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:32] "POST /myclass/api/Get_Attestion_By_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:32] "POST /myclass/api/Get_Attestion_By_Session/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:13:40.112002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:40] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:13:47.969095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:47] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:13:49.677559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:13:50.754178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:13:51.002412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:51] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:13:54.964503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:13:55.269236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:13:55.272262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:13:55.275284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:55] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:55] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:13:55.643141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:13:55.644171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:13:55.645166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:13:55.646258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:13:55.653587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:13:55.656080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:55] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:13:55.985986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:13:55.991801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:13:55.993994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:13:56.031686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:13:56.239386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:56] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:13:56.314623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:13:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:14:07.017180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:14:07.020684 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:14:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:14:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:14:14.600644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:14:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:14:14.910717 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:14:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:14:20.339824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:14:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:14:23.038136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:14:23] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:17:45.467230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:17:45] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:19:13.294012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:19:13.297910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:19:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:19:13] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:19:23.853181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:19:23] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:19:24.157134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:19:24.159137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:19:24.163135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:19:24] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:19:24] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:19:24] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:20:40.394641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:20:40.398058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:20:40.399523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:20:40.438381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:20:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:20:40] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:20:40] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:20:40] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:22:16.076674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:22:16.079735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:22:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:22:16] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:27:57.078082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:27:57] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:27:57.555347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:27:57] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:28:56.759627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:28:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:28:57.066906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:28:57] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:29:11.831078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:29:11.832080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:29:11.837785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:29:11.845802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:11] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:11] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:29:12.078001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:29:12.252878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:29:12.254889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:29:12.259128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:29:12.272739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:29:12.279211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:12] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:12] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:29:12.594016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:29:12.609780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:29:12.614244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:29:12.665158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:29:12.813305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:12] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:12] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:29:12.936937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:29:23.876354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:29:23.879633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:23] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:23] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:29:33.111684 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:33] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:29:33.430473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:29:33] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:33:46.888127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:46] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:33:54.423607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:33:54.425607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:33:54.434609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:54] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:33:54.440629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:54] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:33:54.675747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:33:54.815502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:33:54.817548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:33:54.827086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:33:54.837601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:33:54.841600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:54] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:54] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:33:55.156067 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:33:55.171930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:33:55.176933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:33:55.216911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:33:55.264858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:55] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:33:55.499408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:33:58.066913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:33:58.071801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:58] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:33:58] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:35:57.045501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:35:57.053513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:57] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:35:57.070536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:35:57.078060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:57] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:35:57.294158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:35:57.530294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:35:57.531586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:35:57.547254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:35:57.559960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:35:57.567074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:57] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:35:57.602529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:57] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:57] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:35:57.878547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:35:57.907430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:35:57.916755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:35:57.923747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:35:57.965054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:57] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:58] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:35:58.261201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:35:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:36:02.050845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:36:02.057097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:36:54.548589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:36:54.864306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:36:54.865310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:36:54.871515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:54] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:54] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:36:55.253591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:36:55.255591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:36:55.257593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:36:55.266595 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:36:55.272727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:36:55.279733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:55] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:36:55.591646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:36:55.596482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:36:55.607632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:36:55.638091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:36:55.848141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:55] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:36:55.932210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:36:57.208586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:36:57.212184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:57] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:36:57] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:27.713893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:27.854203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:27.859462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:27.866476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:27.876004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:27.881183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:27.888494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:27.902183 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:27.915292 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:28.028623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:28.032626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:28.038631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:28] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:28] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:28.087158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:28.095147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:28.173866 : Get_List_object_owner_collection_Stored_Files Il manque des informations obligatoires +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:28.175869 : Get_List_object_owner_collection_Stored_Files Il manque des informations obligatoires +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:28.410026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:28.411503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:28.412776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:28.413847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:28.415848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:28.419850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:28] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:28] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:28.744044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:28.749127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:28.758772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:28.791768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:28.997353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:29.090136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:37:36.963374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:37:36.966394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:36] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:37:36] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:38:01.061137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:38:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:39:22.492694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:22] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:39:30.983946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:39:30.985960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:39:30.990331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:39:30.994498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:30] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:31] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:39:31.349284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:31] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:39:31.668103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:39:31.670262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:39:31.671332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:39:31.676852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:39:31.684825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:31] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:39:31.944762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:39:32.011471 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:39:32.016475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:39:32.022492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:39:32.060614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:32] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:39:32.339881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:32] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:32] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:39:50.319227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:39:50.323730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:39:50.620621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:39:50.936670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:39:55.534867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:39:55.537864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:39:55] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:40:21.347115 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:40:21] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:40:22.809176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:40:22] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:40:27.360601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:40:27] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:40:27.672556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:40:27] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:40:30.471698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:40:30.480620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:40:30.488964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:40:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:40:30.495760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:40:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:40:30] "POST /myclass/api/Get_List_Partner_Invoice_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:40:30] "POST /myclass/api/Get_List_Partner_Invoice_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:40:33.269253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:40:33] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:40:33.572899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:40:33] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:40:38.355499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:40:38] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:48:44.665084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:48:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:48:44.873550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:48:44.879542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:48:44.890541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:48:44.900018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:48:44] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:48:44.908174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:48:44.914765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:48:44] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:48:44] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:48:44.921124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:48:44.926629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:48:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:48:44.935791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:48:44] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:48:44] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:48:44.947892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:48:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:48:44] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:48:44] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:48:45] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:52.752732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:51:52.759199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:52.767213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:51:52.772753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:52.786363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:51:52.797670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:52.811618 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:52.818753 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:53.199545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:51:53.204193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:51:53.212086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:51:53.220106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:53.232701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:53.245517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:51:53.250005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:53.258173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:51:53.265265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:53.282730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:53.298645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:53.305509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:53.316997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:51:53.321593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:51:53.329875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:53.348285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:53.362282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:51:53.374038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:53.384037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:53.399181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-23 09:51:53.407582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 09:51:53.417583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:54] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 09:51:54] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.086286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.095252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.109053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.118763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.124580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.140744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.220390 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.232102 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.384808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.388794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.394807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.407868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.410407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.418576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.429727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.440079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.449146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.458925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.466248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.472247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.481482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.493994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.497992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.508008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.514003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.531969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.539121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 10:08:22.548116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.567854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-23 10:08:22.574841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:23] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 10:08:23] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-23 16:23:43.649532 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-23 16:23:43.649532 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-23 16:23:43.649532 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-23 16:23:43.649532 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-23 16:23:43.649532 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-23 16:23:57.657278 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-23 16:23:57.657278 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-23 16:23:57.658267 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-23 16:23:57.658267 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-23 16:23:57.658267 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-23 17:30:27.207943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:27] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-23 17:30:27.948411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 17:30:27.961056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 17:30:27.973958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 17:30:27.984992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 17:30:27.997766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 17:30:28.016303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 17:30:28.060501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-23 17:30:28.081058 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-23 17:30:28.087154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-23 17:30:28.100894 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-23 17:30:28.853842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 17:30:28.861898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 17:30:28.866899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-23 17:30:28.875360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 17:30:28.879694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 17:30:28.886232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-23 17:30:28.898304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-23 17:30:28.912778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-23 17:30:28.921138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 17:30:28.924138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 17:30:28] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:15.374314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:15.366039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:15.384308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:15.418957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:15.440374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:15.444711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:15.475302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:15.477570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:15.481786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:15.533461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:15] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:15] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:15] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:15] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.493961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.499299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.503794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.517590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.520009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.523041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.531376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.538146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.544725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.554126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.560369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.570812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.577192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.584276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.592327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.596924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.603020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.610334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.620998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.628013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.632026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.639466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.646303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.658753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.665359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.672188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.679171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.687358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.692331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.700937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.709018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.717783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.726443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.733113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.741925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.750505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.758892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.764605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.778019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.787154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.799185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.804656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.809192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.820302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.827414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.835268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.841067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.850200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.852438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.864957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.875988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.882984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.893497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.897051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.905222 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.916080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.923543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 18:20:16.929194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.940255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-23 18:20:16.948568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 18:20:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-23 20:20:55.133652 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-23 20:20:55.133652 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-23 20:20:55.133652 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-23 20:20:55.133652 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-23 20:20:55.133652 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-23 20:21:23.901480 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-23 20:21:23.901480 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-23 20:21:23.902479 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-23 20:21:23.902479 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-23 20:21:23.902479 : ++ 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\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-23 21:00:51.157252 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-23 21:00:51.157252 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-23 21:00:51.157252 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-23 21:00:51.157252 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-23 21:00:51.157252 : ++ 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\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-23 21:01:15.009525 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-23 21:01:15.009525 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-23 21:01:15.009525 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-23 21:01:15.009525 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-23 21:01:15.009525 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-23 21:13:34.207415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-23 21:13:35.514808 : InitUserPasswd Aucun resultat trouvé pour le compte pro {'email': 'cherif@dd.gr', 'active': '1', 'locked': '0'} +INFO:werkzeug:127.0.0.1 - - [23/Jan/2025 21:13:35] "POST /myclass/api/InitUserPasswd/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-24 07:52:40.930606 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-24 07:52:40.930606 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-24 07:52:40.930606 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-24 07:52:40.930606 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-24 07:52:40.930606 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-24 07:52:53.582602 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-24 07:52:53.582602 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-24 07:52:53.582602 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-24 07:52:53.582602 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-24 07:52:53.582602 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-24 08:05:13.187890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:13.198520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:13.186885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:13.227468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:13.250614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:13.266537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:13] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:13.375773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:13] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:13.385565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:13.436304 : La session de connexion n'est pas valide +INFO:root:2025-01-24 08:05:13.436304 : La session de connexion n'est pas valide +INFO:root:2025-01-24 08:05:13.437308 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:13] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:13.438337 : La session de connexion n'est pas valide +INFO:root:2025-01-24 08:05:13.438337 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:13] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:13] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:13] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:13.445658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:13.449202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:13.455117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:13.461093 : La session de connexion n'est pas valide +INFO:root:2025-01-24 08:05:13.463774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:13.463774 : La session de connexion n'est pas valide +INFO:root:2025-01-24 08:05:13.467038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:13] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:13.474088 : La session de connexion n'est pas valide +INFO:root:2025-01-24 08:05:13.474088 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:13] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:13] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:13.483258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:13.488239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:13] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:13.491764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:13] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:13.503413 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:13] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:15.207854 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:15] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:15.208868 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:15] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:26.744190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:26] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:26.918827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:26.923855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:26.929156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:26.938480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:26.943022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:26.950945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:26.965137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:26] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:26.994374 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-24 08:05:26.996764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:27.010234 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:27.152149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:27.158955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:27.163970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:27.170005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:27.178545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:27.189108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:27.197597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:27.208147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:27.216361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:27.232345 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:35.635851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:35.639851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:35.644191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:35.649846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:35.660444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:35.665439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:35.669440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:35.679217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:35.683780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:35.688771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:35.709324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:35.717969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:35.740671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:05:35.757864 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:35.765066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:35.775515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:35.785793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:35.799819 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:35.802824 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:05:35.804819 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:05:35] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:06:44.556840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:06:44.563383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:06:44.568999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:06:44.575802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:06:44.582993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:06:44.591051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:06:44.595550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:06:44.607447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:06:44.612279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:06:44.618185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:06:44.636983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:06:44.640378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:06:44.661765 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:root:2025-01-24 08:06:44.663766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:06:44.669116 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:06:44.672870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:06:44.679216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:06:44.691960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:06:44.711658 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:root:2025-01-24 08:06:44.711658 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:06:44] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:07:51.726791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:07:51.730794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:07:51.735798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:07:51.751937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:07:51.759355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:07:51.767912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:07:51.775480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:07:51.785123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:07:51.789122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:07:51.801925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:07:51.815211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:07:51.829988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:07:51.855084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:07:51.860089 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:07:51.863087 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:07:51.869416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:07:51.878668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:07:51.886673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:07:51.902680 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:07:51.912561 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:07:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:10:21.563300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:10:21.568298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:10:21.575304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:10:21.584300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:10:21.593333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:10:21.604789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:10:21.613324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:10:21.623384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:10:21.630059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:10:21.637958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:10:21.661117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:10:21.677420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:10:21.698631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 08:10:21.700770 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:10:21.705273 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:10:21.710803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:10:21.718835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:10:21.725846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:10:21.750471 : Audit_Session_Action_Inscrit L'identifiant de la session est invalide +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-24 08:10:21.755912 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 08:10:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-24 09:36:46.479794 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-24 09:36:46.479794 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-24 09:36:46.480791 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-24 09:36:46.480791 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-24 09:36:46.480791 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-24 09:37:06.111809 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-24 09:37:06.111809 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-24 09:37:06.111809 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-24 09:37:06.111809 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-24 09:37:06.111809 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-24 09:57:19.213032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-24 09:57:19.427775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 09:57:19.434501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 09:57:19.442395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 09:57:19.449236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 09:57:19.456246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 09:57:19.462977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-24 09:57:19.509248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-24 09:57:19.517893 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-24 09:57:19.521820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-24 09:57:19.532404 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-24 09:57:19.615459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 09:57:19.620080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 09:57:19.625321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-24 09:57:19.636194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 09:57:19.641650 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 09:57:19.647934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-24 09:57:19.658876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 09:57:19.671393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-24 09:57:19.679804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 09:57:19.689505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 09:57:19] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-24 15:13:37.020714 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-24 15:13:37.020714 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-24 15:13:37.020714 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-24 15:13:37.020714 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-24 15:13:37.020714 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-24 15:14:09.550779 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-24 15:14:09.550779 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-24 15:14:09.550779 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-24 15:14:09.550779 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-24 15:14:09.550779 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-24 15:47:23.894969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:24.115150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:24.120697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:24.125701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:24.133696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:24.141751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:24.154981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:24.168061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:24.169061 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:24.186186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:24.193442 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:24.274018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:24.277362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:24.281492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:24.288007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:24.293999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:24.300110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:24.302113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:24.314836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:24.321831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:24.328902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:30.247122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:30.251438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:30.254594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:30.259141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:30.262626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:30.269950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:30.275375 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:30.284368 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:30.451830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:30.455577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:30.460660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 15:47:30.464932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:30.475444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:30.482430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:30.491438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:30.498745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:30.510710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-24 15:47:30.517286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 15:47:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:51.276037 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:51.272454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:51.287325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:51.307116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:51.338690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:51.365146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:51.368148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:51.375569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:51] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:51.401859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:51] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:51] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:51] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:51] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:51.688561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:51] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:51] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:51] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.109445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.114379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.121617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.127138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.134139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.142645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.150380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.155374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.158690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.166700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.172792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.183789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.189060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.200983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.210871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.219606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.228137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.241768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.248820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.257175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.264842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.272811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.276753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.286326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.294310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.300503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.310657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.319631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.324066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.328514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.337097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.346697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.354588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.364647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.367925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.375861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.384028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.398095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.403875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.411080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.418420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.424071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.431556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.444861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.452861 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.455873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.466670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.478745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.481581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.490294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.500373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.504679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.515706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.523455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.536835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.545469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-24 16:47:52.553856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.557775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.567982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-24 16:47:52.573838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2025 16:47:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-25 09:03:16.510497 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-25 09:03:16.510497 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-25 09:03:16.510497 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-25 09:03:16.511500 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-25 09:03:16.511500 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-25 09:03:38.667577 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-25 09:03:38.667577 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-25 09:03:38.667577 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-25 09:03:38.667577 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-25 09:03:38.667577 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-25 09:05:11.935509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:12.143266 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:12.146969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:12.150320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:12.155036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:12.161719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:12.167605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:12.177134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:12.196034 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-25 09:05:12.198350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:12.210445 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:12.317947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:12.321065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:12.324477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:12.329223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:12.335771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:12.340542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:12.347852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:12.357851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:12.363040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:12.372842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:12] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:20.201325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:20.206654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:20.209980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:20.216434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:20.222776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:20.227842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:20.241301 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:20.246066 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:20.438634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:20.441856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:20.449855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:20.457603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:20.465392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:20.478323 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:20.482018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:20.490023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 09:05:20.498026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-25 09:05:20.509567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 09:05:20] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:30:30.451595 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:30:30.457279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:30:30.469284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:30:30.544747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:30:30.549332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:30:30.565434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:30:30.580699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:30:30.620316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:30:30.629571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:30:30.645068 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-25 11:30:30.646069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:30:30.651690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:30:30.658621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:30:30.679657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:30:30.681678 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-25 11:30:30.683940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:30:30.707860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:30:30.715398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:30:30.732046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:30:30.768102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:30:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:32:08.869527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:08.873775 : Le token est vide +INFO:root:2025-01-25 11:32:08.885284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:08.982415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:08.987779 : Le token est vide +INFO:root:2025-01-25 11:32:08.990946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:10.028631 : getRecodedImage - Impossible de récupérer le recid du user +INFO:root:2025-01-25 11:32:10.029779 : get_user_account Le token est vide +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:32:10.029779 : get_user_account Le token est vide +INFO:root:2025-01-25 11:32:10.029779 : getRecodedImage - Impossible de récupérer le recid du user +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:10] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:10] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:32:12.052240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:32:12.153033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:12.156631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:12.160473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:12.166877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:12.172135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:32:12.185147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:32:12.192237 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:12.198363 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-25 11:32:12.199840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:32:12.218846 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:32:12.300806 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:12.305438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:12.312524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:12.319854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:32:12.329645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:12.336240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:32:12.345582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:32:12.358101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:12.369341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:32:12.377604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:12] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-25 11:32:19.126203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:19.132683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:19.136627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:19.142315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 11:32:19.162698 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-25 11:32:19.163699 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_jfHqe2IMNpPoKa message='Dashboard link for request' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_JdoWnq3wLWpxqi message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:19] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 11:32:19] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-25 16:40:05.188573 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-25 16:40:05.189566 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-25 16:40:05.190567 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-25 16:40:05.190567 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-25 16:40:05.190567 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-25 16:40:26.262421 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-25 16:40:26.263473 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-25 16:40:26.263473 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-25 16:40:26.263473 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-25 16:40:26.263473 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-25 16:48:48.069219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-25 16:48:48.411680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 16:48:48.417582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 16:48:48.427492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 16:48:48.435392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 16:48:48.444051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 16:48:48.452989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-25 16:48:48.468536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-25 16:48:48.500406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 16:48:48.501408 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-25 16:48:48.514415 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-25 16:48:48.593771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 16:48:48.600613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 16:48:48.607895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 16:48:48.618783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-25 16:48:48.634980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 16:48:48.651813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-25 16:48:48.676556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 16:48:48.680932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 16:48:48.689718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-25 16:48:48.734421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 16:48:48] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-25 20:18:53.570083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 20:18:53.581282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 20:18:53.599254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 20:18:53.610403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 20:18:53.618228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 20:18:53.626938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-25 20:18:53.720532 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-25 20:18:53.729384 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-25 20:18:54.254825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 20:18:54.258826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 20:18:54.266325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 20:18:54.274126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 20:18:54.287568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:54] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:54] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-25 20:18:54.299995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:54] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-25 20:18:54.310262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-25 20:18:54.323838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 20:18:54.331478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-25 20:18:54.335912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:54] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:54] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:54] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:54] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2025 20:18:54] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-26 10:19:11.093438 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-26 10:19:11.093438 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-26 10:19:11.093438 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-26 10:19:11.093438 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-26 10:19:11.093438 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-26 10:19:20.999819 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-26 10:19:20.999819 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-26 10:19:20.999819 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-26 10:19:20.999819 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-26 10:19:20.999819 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-26 10:19:34.786939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 10:19:34.856018 : Le message a été bien enregistré. Id message = '6795fe26ce9ae91b897e5724' +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 10:19:34] "POST /myclass/api/add_user_message/ HTTP/1.1" 200 - +INFO:root:2025-01-26 10:22:30.683679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 10:22:30.687105 : Le message a été bien enregistré. Id message = '6795fed6ce9ae91b897e5725' +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 10:22:30] "POST /myclass/api/add_user_message/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\user_message_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-26 10:34:24.106061 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-26 10:34:24.107061 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-26 10:34:24.107061 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-26 10:34:24.107061 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-26 10:34:24.107061 : ++ 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\\user_message_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-26 10:35:31.902948 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-26 10:35:31.902948 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-26 10:35:31.902948 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-26 10:35:31.902948 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-26 10:35:31.902948 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-26 12:09:55.701154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:55] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:09:56.033358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:09:56.040522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:09:56.048684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:09:56.057653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:09:56.066926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:09:56.075813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:09:56.086090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:09:56.126842 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-26 12:09:56.127848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:09:56.137318 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:09:56.237810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:09:56.246966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:09:56.253507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:09:56.256502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:09:56.263813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:09:56.269847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:09:56.279781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:09:56.290745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:09:56.304530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:09:56.308961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:09:56] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:10:25.650661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:10:25.652699 : Le token est vide +INFO:root:2025-01-26 12:10:25.656189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:10:25.711833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:10:25.714833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:10:25.714833 : Le token est vide +INFO:root:2025-01-26 12:10:26.675123 : getRecodedImage - Impossible de récupérer le recid du user +INFO:root:2025-01-26 12:10:26.675123 : getRecodedImage - Impossible de récupérer le recid du user +INFO:root:2025-01-26 12:10:26.675123 : get_user_account Le token est vide +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:10:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:10:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:10:26] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:10:26.677227 : get_user_account Le token est vide +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:10:26] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:10:34.111530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:10:34.112548 : Le token est vide +INFO:root:2025-01-26 12:10:34.114682 : getRecodedImage - Impossible de récupérer le recid du user +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:10:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:10:34.120932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:10:34.122953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:10:34.124954 : Le token est vide +INFO:root:2025-01-26 12:10:34.126054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:10:34.133090 : get_user_account Le token est vide +INFO:root:2025-01-26 12:10:34.133090 : get_user_account Le token est vide +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:10:34] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:10:34] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:10:34.135998 : getRecodedImage - Impossible de récupérer le recid du user +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:10:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.173519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.176781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.183917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.205367 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.208367 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.212364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.233517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.236522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.243520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.249810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.763800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.770800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.777547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.786204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.787204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.794977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.801427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.807430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.811427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.816456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.821208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.825331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.832433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.835496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.843579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.849583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.853585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.859648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.865062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.871086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.876548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.882946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.887249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.893910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.902241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.908240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.912825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.917525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.923233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.926386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.928469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.934760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.944545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.950558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.955910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.958921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.964973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.968274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.974430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.981592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:51.984006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.992214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:51.998587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:52.003751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:52.012740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:52.016481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:52.020754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:52.021958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:52.023954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:52.025983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:52.047600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:52.052150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:52.058389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:52.065099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:52.070750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:52.078073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 12:11:52.081711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:52.086595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:52.095414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 12:11:52.101225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 12:11:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-26 15:45:25.163668 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-26 15:45:25.163668 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-26 15:45:25.163668 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-26 15:45:25.163668 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-26 15:45:25.163668 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-26 15:45:38.400744 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-26 15:45:38.400744 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-26 15:45:38.400744 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-26 15:45:38.400744 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-26 15:45:38.400744 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-26 16:01:34.362847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:34] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:34.747207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:34.753611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:34.762107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:34.767256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:34.777383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:34.787292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:34.817234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:34.824579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:34.874950 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:34.875958 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:34.959288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:34.964299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:34.968294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:34.978369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:35.009103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:35.032120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:35.045122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:35] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:35] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:35.069306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:35.084328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:35.092297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:35] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:35] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:44.595049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:44.598056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:44.603581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:44.606917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:44.613548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:44.622208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:44.622208 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:44.634024 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:44.930589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:44.934531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:44.940028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:44] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:44.947034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:44.952426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:44] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:44] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:44.963930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:44.965304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:44.973784 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:44.985335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:44] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:44.989238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:45] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:45] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:45] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:53.508931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:53.512369 : Le token est vide +INFO:root:2025-01-26 16:01:53.516505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:53.566529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:53.568526 : Le token est vide +INFO:root:2025-01-26 16:01:53.570524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:54.485481 : get_user_account Le token est vide +INFO:root:2025-01-26 16:01:54.485481 : getRecodedImage - Impossible de récupérer le recid du user +INFO:root:2025-01-26 16:01:54.485481 : get_user_account Le token est vide +INFO:root:2025-01-26 16:01:54.486625 : getRecodedImage - Impossible de récupérer le recid du user +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:54] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:54] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:57.269681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:57.271635 : Le token est vide +INFO:root:2025-01-26 16:01:57.273637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:57.277423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:57.279432 : Le token est vide +INFO:root:2025-01-26 16:01:57.280451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:57.293749 : getRecodedImage - Impossible de récupérer le recid du user +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:57.295783 : get_user_account Le token est vide +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:57] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:57.298239 : getRecodedImage - Impossible de récupérer le recid du user +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:57.300510 : get_user_account Le token est vide +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:57] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:58.600210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:58.602214 : Le token est vide +INFO:root:2025-01-26 16:01:58.604369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:58.606521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:58.611012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:01:58.611012 : Le token est vide +INFO:root:2025-01-26 16:01:58.620736 : getRecodedImage - Impossible de récupérer le recid du user +INFO:root:2025-01-26 16:01:58.620736 : get_user_account Le token est vide +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:58] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:01:58.624161 : getRecodedImage - Impossible de récupérer le recid du user +INFO:root:2025-01-26 16:01:58.624161 : get_user_account Le token est vide +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:01:58] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:10.621216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:10.623686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:10.625158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:10.640755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:10.652045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:10.656047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:10.677888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:10.688423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:10] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:10.776417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:10] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:10] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:10.937782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:10] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:10] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.371648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.376789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.383679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.394737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.404209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.413794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.423876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.431946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.441438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.448280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.452398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.463295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.467306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.478094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.486912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.496796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.504923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.511929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.521922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.528377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.539014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.550302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.560142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.563649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.575276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.584550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.594534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.598057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.609460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.614117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.627938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.637295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.645969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.655084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.662503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.674000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.678787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.687244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.695839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.700871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.713710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.726203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.735612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.746299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.749466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.755907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.765463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.772463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.777943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.788244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.791413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.799547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.808678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.814682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.821412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.829022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.835285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.848662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:11.853347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:11.865369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:12.901641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:12.905653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:12.910359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:12.912403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:12.922406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:12.932760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:12.941993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:12.954004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:12.954995 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-26 16:02:12.954995 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:13.052781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:13.058096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:13.063088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:13.069690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:13] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:13.073692 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:13.082277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:13] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:13.092827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:13] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:13.102130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:02:13.111348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:13] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:02:13.124098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:13] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:13] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:13] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:02:13] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:05:46.925558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:05:46.929560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:05:46.935555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:05:46.941556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:05:46.947606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:05:46.961110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:05:46.965999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:05:46.967000 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:05:46.977198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:05:46.997505 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:05:47.088402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:05:47.094072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:05:47.099150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:05:47.106538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:47] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:05:47.114315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:05:47.121047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:05:47.129429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:47] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:47] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:05:47.145935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:05:47.153935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:05:47.164942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:47] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:47] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:47] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:47] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:05:47] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:48.708858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:48.715139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:48.716467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:48.725260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:48.728015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:48.732017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:48.736460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:48] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:48.737459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:48.740651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:48.743648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:48] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:48] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:48] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:48] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.218114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.225026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.231377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.238173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.242601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.248182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.250772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.258774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.263844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.269418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.276874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.281369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.288013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.295556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.303986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.310941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.316029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.322388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.328391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.331393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.338247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.345694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.348696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.357124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.360520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.366119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.370791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.377157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.380299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.383302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.389362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.395012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.398308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.402949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.407272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.410358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.415548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.420633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.425221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.431478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.436918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.443147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.448744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.453759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.460427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.466571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.474190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.478979 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.484119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.491440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.496059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.503095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.510049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.513838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.518835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.522663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.531054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.533132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:12:49.542785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:12:49.546271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:12:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:14:02.044045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:14:02.154144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:14:02.160000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:14:02.164295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:14:02.170586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:14:02.175449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:14:02.181535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:14:02.189236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:14:02.202324 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:14:02.212971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:14:02.217439 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:14:02.361202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:14:02.364319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:14:02.368730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:14:02.374995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:14:02.389452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:14:02.398227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:14:02.400225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-26 16:14:02.407948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:14:02.419566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-26 16:14:02.426087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Jan/2025 16:14:02] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-27 07:39:57.122544 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-27 07:39:57.122544 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-27 07:39:57.123532 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-27 07:39:57.123532 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-27 07:39:57.123532 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-27 07:40:08.612325 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-27 07:40:08.612325 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-27 07:40:08.612325 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-27 07:40:08.612325 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-27 07:40:08.613323 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-27 07:59:02.531137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:02] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-27 07:59:02.819624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 07:59:02.821620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 07:59:02.827618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 07:59:02.828618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 07:59:02.835158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 07:59:02.840450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 07:59:02.868718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 07:59:02.872943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 07:59:02.917677 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-27 07:59:02.918690 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-27 07:59:03.038941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 07:59:03.043288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 07:59:03.047668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 07:59:03.050909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 07:59:03.055934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 07:59:03.060243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:03] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:03] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-27 07:59:03.079737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 07:59:03.084741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 07:59:03.103272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 07:59:03.108277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:03] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:03] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:03] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:03] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:03] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 07:59:03] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:00:22.084308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:00:22.086311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:00:22.089307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:00:22.094353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:00:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:00:22.103838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:00:22.109366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:00:22] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:00:22] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:00:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:00:22] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:00:22] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:14:35.358762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:14:35.371846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:14:35.379074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:14:35.384136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:14:35.388541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:14:35.394605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:14:35] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:14:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:14:35] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:14:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:14:35] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:14:35] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:22:07.724796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:22:07.731097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:22:07.748469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:22:07] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:22:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:22:07] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:22:47.976749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:22:47.983125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:22:47.988135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:22:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:22:48] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:22:48] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:23:03.929109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:23:03.933034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:23:03.936143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:23:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:23:03] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:23:03] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:08.203037 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:08.211337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:08.221612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:08.280309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:08.285655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:08.293836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:08.322835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:08.327619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:08.350291 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:08.358978 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:08.434403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:08.442866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:08.453438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:08.462896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:08.476923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:08.502560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:08.507619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:08.514280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:08.519305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:08.528576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:08] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:17.071800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:17.076169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:17.080189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:17.089606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:17.096474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:17.110209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:17.116209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:17.129209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:17.136255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:17.147610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:17.163279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:17.174331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:17.186758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:17.206661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:17.218533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:17.226553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:17.236031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:17.247354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:17.257774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:17.263487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:25:17.274610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:25:17.277517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:25:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:27:18.409127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:27:18.413635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:27:18.422218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:27:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:27:18] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:27:18] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:30:25.695828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:30:25.702389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:30:25.707529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:30:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:30:25] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:30:25] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:49:55.110753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:49:55.120623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:49:55.132540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:49:55] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:49:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:49:55] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:50:55.417637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:50:55.423637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:50:55.432633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:50:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:50:55] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:50:55] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 08:57:18.135980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:57:18.143207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 08:57:18.149537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:57:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:57:18] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 08:57:18] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:00:08.162924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:00:08.171423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:00:08.176432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:00:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:00:08] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:00:08] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:00:36.629892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:00:36.634205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:00:36.639701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:00:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:00:36] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:00:36] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:02:22.277993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:02:22.285135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:02:22.289136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:02:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:02:22] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:02:22] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:07:38.723684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:07:38.731684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:07:38.737864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:07:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:07:38] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:07:38] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:08:19.368018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:08:19.373482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:08:19.375490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:08:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:08:19] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:08:19] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:09:06.109632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:09:06.116253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:09:06.123246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:09:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:09:06] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:09:06] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:10:36.272525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:10:36.280536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:10:36.287224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:36] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:36] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:10:57.753653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:10:57.763076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:10:57.771382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:10:57.779776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:10:57.796018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:10:57.809873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:10:57.817688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:10:57.861228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:10:57.883137 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:10:57.888136 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:10:58.043515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:10:58.049543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:10:58.054541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:10:58.064732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:10:58.079945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:58] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:10:58.085560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:10:58.095851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:58] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:10:58.104818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:10:58.112774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:10:58.125004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:58] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:58] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:58] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:10:58] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:11:08.538797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:11:08.542797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:11:08.548797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:11:08.558804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:11:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:11:08.565807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:11:08.575337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:11:08] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:11:08] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:11:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:11:08] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:11:08] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:12:22.975287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:12:22.981073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:12:22.988188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:12:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:12:23] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:12:23] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:13:11.644879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:13:11.658389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:13:11.663736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:13:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:13:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:13:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:17:01.551383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:17:01.561707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:17:01.569724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:17:01] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:17:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:17:01] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:18:54.393067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:18:54] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:18:54.624834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:18:54.630130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:18:54] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:18:54] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:18:58.276259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:18:58] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:18:58.302983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:18:58.317994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:18:58] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:18:58] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:19:06.482073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:19:06] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:19:06.504039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:19:06.509726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:19:06] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:19:06] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:19:10.106911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:19:10] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:19:10.126850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:19:10.131845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:19:10] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:19:10] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:20:23.930079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:20:23.940915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:20:23.948598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:20:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:20:23] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:20:23] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:21:02.466041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:21:02.472441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:21:02.476559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:21:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:21:02] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:21:02] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:22:30.381844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:22:30.388245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:22:30.399761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:22:30.401755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:22:30.418611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:22:30.420607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:22:30.428944 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:22:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:22:30.442515 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:22:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:22:30] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:22:30] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:22:30] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:22:30] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:22:31.200654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:22:31.204725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:22:31.212205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:22:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:22:31.227322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:22:31] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:22:31.234388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:22:31] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:22:31.242479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:22:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:22:31] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:22:31] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:24:17.014585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:24:17.020716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:24:17.024994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:24:17.032202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:24:17.039590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:24:17.052724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:24:17.058975 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-27 09:24:17.061525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:24:17.078900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:24:17.090966 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:24:17.330960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:24:17.336106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:24:17.340435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:24:17.347882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:24:17.355357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:24:17.361822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:24:17.372395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:24:17.380084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:24:17.387330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:24:17.395329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:17] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:24:20.424437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:24:20.428437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:24:20.433456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:24:20.444590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:20] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:24:20.448859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:20] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:24:20.458759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:20] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:24:20] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:25:20.062418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:25:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:25:20.077162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:25:20.081168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:25:20] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:25:20] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:25:34.583540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:25:34.587540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:25:34.591544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:25:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:25:34] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:25:34] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:27:05.620120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:27:05.624158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:27:05.629377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:27:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:27:05] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:27:05] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:30:15.651826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:30:15.656855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:30:15.665339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:30:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:30:15] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:30:15] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:30:22.134672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:30:22] "POST /myclass/api/Update_activite_status/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:30:22.157654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:30:22.159664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:30:22] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:30:22] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:32:11.244517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:32:11.248511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:32:11.253039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:32:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:32:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:32:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:33:54.603811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:33:54.608807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:33:54.611812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:33:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:33:54] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:33:54] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:12.056183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:12.061318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:12] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:12] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:15.443274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:15.450835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:22.093721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:22.098729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:22.102547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:22.108556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:22.117966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:22.123747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:22.131753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:22.139755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:22.144754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:22.150751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:22.158454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:22.171405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:22.177371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:22.182707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:22.189706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:22.194699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:22.203069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:22.208599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:22.216458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:22.222737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:22.232819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:22.248565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:22] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:34:54.654160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:54.657164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:54.662363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:54.665392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:54.669392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:34:54.675397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:54] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:54] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:54] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:34:54] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:36:07.361513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:36:07] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:36:07.435877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:36:07.439867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:36:07.444264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:36:07.452937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:36:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:36:07.457883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:36:07] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:36:07.468733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:36:07] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:36:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:36:07] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:36:07] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:36:10.760869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:36:10] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:36:10.932848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:36:10.936169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:36:10.941581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:36:10.946474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:36:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:36:10.954053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:36:10] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:36:10.960440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:36:10] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:36:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:36:10] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:36:10] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:41:44.802168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:41:44.811707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:41:44.822804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:41:44.829256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:41:44.832443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:41:44.843468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:41:44.868409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:41:44.886224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:41:44.903687 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:41:44.907993 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:41:45.158343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:41:45.164374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:41:45.173534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:41:45.179726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:41:45.185826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:45] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:41:45.192848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:41:45.200004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:41:45.211200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:41:45.214590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:41:45.218941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:45] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:45] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:41:45] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:42:50.625800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:42:50.629133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:42:50.632412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:42:50.636836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:42:50.642234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:42:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:42:50.652580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:42:50] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:42:50] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:42:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:42:50] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:42:50] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:47:06.753834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:47:06.759004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:47:06.762007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:47:06.767004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:47:06.783974 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:47:06.866933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:47:06.870396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:47:06.875993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:47:06.883999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:06] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:47:06.893401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:06] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:47:06.896401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:06] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:47:06.903398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:47:06.911285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:47:06.922843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:06] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:47:06.938694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:06] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:06] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:06] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:06] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:47:07.000775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:47:07.008034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:47:07.011928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:47:07.026097 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:47:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:48:53.293507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:48:53.299091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:48:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:48:53.306097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:48:53.311037 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:48:53.317630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:48:53.323020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:48:53.334485 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:48:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:48:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:48:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:48:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:48:53.393204 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:48:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:50:08.317271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:50:08.320442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:50:08.323490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:50:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:50:08.335828 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:50:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:50:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:50:09.253921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:50:09.257919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:50:09.261223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:50:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:50:09.274205 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:50:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:50:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:50:39.229526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:50:39.231843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:50:39.235272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:50:39] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:50:39.248981 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:50:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:50:39] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:50:40.227026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:50:40.230021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:50:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:50:40.236336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:50:40.247315 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:50:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:50:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:51:00.568608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:51:00.570808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:51:00.574358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:51:00.589071 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:51:01.489763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:51:01.492094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:51:01.497213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:51:01.508215 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:51:11.713449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:51:11.716349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:51:11.719764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:51:11.725387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:51:11.730146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:51:11.733159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:11] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:11] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:51:33.393715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:33] "POST /myclass/api/Get_Given_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:51:33.562064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:33] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:51:38.497481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:38] "POST /myclass/api/Update_activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:51:38.545563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:51:38.547975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:38] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:51:38] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:55:18.676875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:55:18.683368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:55:18.689029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:55:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:55:18.697186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:55:18.707146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:55:18.711267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:55:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:55:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:55:18.727972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:55:18.737468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:55:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:55:18.741897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:55:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:55:18] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:55:18.752975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:55:18.762586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:55:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:55:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:55:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:55:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:55:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-27 09:56:47.493408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:56:47.496466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 09:56:47.500465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:56:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:56:47] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 09:56:47] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-27 14:51:30.233814 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-27 14:51:30.234816 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-27 14:51:30.234816 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-27 14:51:30.234816 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-27 14:51:30.234816 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-27 14:51:42.925792 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-27 14:51:42.925792 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-27 14:51:42.925792 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-27 14:51:42.925792 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-27 14:51:42.925792 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2025-01-27 14:52:54.448028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:54] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:52:54.746900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:52:54.750695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:52:54.756160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:52:54.760764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:52:54.768346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:52:54.773742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:52:54.822123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:54] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:52:54.827976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:54] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:52:54.900667 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:52:54.912561 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:52:54.974846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:52:54.986844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:52:54.988850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:52:55.002716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:52:55.037944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:52:55.051194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:52:55.056555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:52:55.062036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:52:55.075509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:55] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:55] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:52:55.095278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:55] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:55] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:55] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:52:55] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:53:02.632212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:53:02.634213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:53:02.639975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:53:02.641976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:53:02.646606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:53:02.653407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:53:02.655652 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:53:02.669012 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:53:02.833072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:53:02.836262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:53:02.841268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:53:02.844272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:53:02.854781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:53:02.867355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:53:02.878704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:53:02.891109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:53:02.896813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:53:02.905622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:02] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-27 14:53:15.383781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-27 14:53:15.388235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:15] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Jan/2025 14:53:15] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-28 09:48:02.006180 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-28 09:48:02.006180 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-28 09:48:02.006180 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-28 09:48:02.006180 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-28 09:48:02.006180 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-28 09:48:15.478508 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-28 09:48:15.479519 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-28 09:48:15.479519 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-28 09:48:15.479519 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-28 09:48:15.479519 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-28 09:59:34.843395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:34] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-28 09:59:34.986981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-28 09:59:34.990462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-28 09:59:34.994581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-28 09:59:34.999614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-28 09:59:35.007142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-28 09:59:35.015556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-28 09:59:35.026128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-28 09:59:35.046233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-28 09:59:35.047232 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-28 09:59:35.061128 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-28 09:59:35.176373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-28 09:59:35.180954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-28 09:59:35.185237 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-28 09:59:35.194442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-28 09:59:35.201642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-28 09:59:35.214030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-28 09:59:35.218658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-28 09:59:35.227919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-28 09:59:35.234118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-28 09:59:35.249814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-28 09:59:49.276448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-28 09:59:49.281484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:49] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:49] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-28 09:59:56.652843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-28 09:59:56.657520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:56] "POST /myclass/api/get_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-28 09:59:56.663569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:56] "POST /myclass/api/get_last_3_articles/ HTTP/1.1" 200 - +INFO:root:2025-01-28 09:59:56.671576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:56] "POST /myclass/api/get_articles_avis/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 09:59:56] "POST /myclass/api/get_last_3_articles/ HTTP/1.1" 200 - +INFO:root:2025-01-28 10:10:46.943408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-28 10:10:46.947422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 10:10:46] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 10:10:46] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-28 10:12:57.324911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 10:12:57] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-28 10:15:05.602968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 10:15:05] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-28 10:17:29.202232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 10:17:29] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-28 10:19:07.893727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 10:19:07] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-28 10:20:46.507533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 10:20:46] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-28 10:23:50.746299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 10:23:50] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-28 10:24:36.681189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 10:24:36] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-28 10:27:50.138119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 10:27:50] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-28 10:41:05.158749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 10:41:05] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-28 10:43:49.807492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 10:43:49] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-28 10:46:00.022861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 10:46:00] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-28 10:47:25.854366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Jan/2025 10:47:25] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-30 08:32:42.194652 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-30 08:32:42.194652 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-30 08:32:42.194652 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-30 08:32:42.194652 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-30 08:32:42.195654 : ++ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-30 08:32:57.986537 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-30 08:32:57.986537 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-30 08:32:57.986537 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-30 08:32:57.986537 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-30 08:32:57.986537 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-30 09:13:02.359394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:02] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:02.663442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:02.667834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:02.670839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:02.677977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:02.681965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:02.688308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:02.727329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:02.732844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:02.781669 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:02.783663 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:02.848265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:02.853089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:02.857547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:02.861014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:02.909467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:02.932948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:02] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:02.968220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:02] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:02] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:02.997771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:03.009103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:03] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:03.022136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:03] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:03] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:03] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:03] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:05.218549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:05.222550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:05.226553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:05.232796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:05.236262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:05.249756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:05.257869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:05.263088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:05.268093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:05.272962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:05.280015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:05.286598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:05.293064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:05.300219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:05.312884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:05.320563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:05.334796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:05.343911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:05.359911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:05.361911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:05.366908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:05.379929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:10.230454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:10] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:15.320670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:15.323991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:15.327380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:15.332784 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:13:15.337659 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:15.343675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:13:15.352356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:15] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:15] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:13:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:17:07.211378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:17:07.213627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:17:07.226589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:17:07.232792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:17:07.239496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:17:07] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:17:07.244560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:17:07.249650 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:17:07.257551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:17:07] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:17:07] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:17:07] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:17:07] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:17:07] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:17:07] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:17:07] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:21:15.499862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:21:15.502053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:21:15.508227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:21:15.512311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:21:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:21:15.517799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:21:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:21:15.524618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:21:15.532279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:21:15.536279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:21:15.541282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:21:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:21:15.549790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:21:15] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:21:15] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:21:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:21:15] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:21:15] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:21:15] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:21:15] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:23:23.495948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:23:23.499955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:23:23.503957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:23:23.508954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:23:23.517952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:23:23] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:23:23.522141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:23:23.528940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:23:23.539947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:23:23] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:23:23] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:23:23] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:23:23] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:23:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:23:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:23:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\GlobalVariable.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-30 09:51:19.837812 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-30 09:51:19.837812 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-30 09:51:19.837812 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-30 09:51:19.837812 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-30 09:51:19.837812 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-30 09:51:22.960140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:22.962168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:22.963172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:22.965172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:22.966170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:22.968259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:22.970317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:22.972337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:22.977339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:22.982148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:22] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:22] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.482258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:23.485781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.488272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:23.490555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.495551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:23.498552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.505631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.512301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.517308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:23.520303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:23.524733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.529730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:23.533391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.539882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.544758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.550253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.556102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:23.561755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.568774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.575440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.582864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.585897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.592329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.596711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:23.600625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.605957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.611887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.618279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.625624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.631031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.636977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.644227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.649504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.654335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:23.659296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.663331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.671375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.676561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.682266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.691487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.696487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.702234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:23.705668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.711144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:23.714920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.721931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.729046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.735368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:23.739360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.745361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.752820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.759348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:23.762732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.770992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.777106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.784391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.789893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.795897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:23.798891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:23.810846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:27.725251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:27] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:27.785884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:27.788644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:27.793823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:27.797954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:27.805779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:27.815867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:27.822882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:27.823881 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-30 09:51:27.826884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:27.849734 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:27.949310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:27.953592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:27.958869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:27.964525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:27.974258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:27.981604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:27.988849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:28.003008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:28.005012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:28] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:28.017543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:28] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:28] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:28] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:28] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:35.798718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:35.801721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:35.805301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:35.812206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:35.821066 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:35.825305 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_9IRuG9sviX73vn message='Dashboard link for request' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_GGyUQVMHMeqeLr message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:36] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:36] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:46.207211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:46.211674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:46.216827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:46.219992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:46] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:46.228181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:46.233199 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:46.238233 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:46] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 09:51:46.251762 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_QGiUjS1O6l6qeI message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:46] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:46.564173 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_twlQcBByqp39Pt message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:46] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:46.575922 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:46.611198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:46.622020 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:51:51.490701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:51:52.182731 : Get_Given_Code_Promo - Le code promo '1000' n'existe pas +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:51:52] "POST /myclass/api/Get_Given_Code_Promo/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:52:01.534562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:52:01.536595 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data= +INFO:root:2025-01-30 09:52:01.561584 : createOrder la valeur du remise n'est pas correcte +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:52:01] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij response_code=404 +DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such subscription: \'sub_1OtUPMAbmaEugrFThoDKBIij\'",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_cgpK1Kdz7aKI8k?t=1738227121",\n "type": "invalid_request_error"\n }\n}\n' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_cgpK1Kdz7aKI8k message='Dashboard link for request' +INFO:stripe:error_code=resource_missing error_message="No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij'" error_param=id error_type=invalid_request_error message='Stripe API error received' +INFO:root:2025-01-30 09:52:01.833618 : strip_update_subscription_plan -Request req_cgpK1Kdz7aKI8k: No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij' - ERRORRRR AT Line : 1175 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:52:01] "POST /myclass/api/strip_update_subscription_plan/ HTTP/1.1" 200 - +INFO:root:2025-01-30 09:52:14.590031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 09:52:14.596843 : Get_Given_Code_Promo - Le code promo '' n'existe pas +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 09:52:14] "POST /myclass/api/Get_Given_Code_Promo/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ela_factures_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-30 10:00:36.440730 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-30 10:00:36.440730 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-30 10:00:36.441909 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-30 10:00:36.441909 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-30 10:00:36.441909 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-30 10:00:36.581590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:00:36.584530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:00:36.586540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:00:36.590651 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 10:00:36.711644 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:00:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:00:36.712646 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:00:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_CNInYTm46m4mbC message='Dashboard link for request' +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_tgE6FLgEK91eKm message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:00:37] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:00:37] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:00:54.509601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:00:54.513820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:00:54.516834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:00:54.521330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:00:54.529001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:00:54.532651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:00:54] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:00:54.539008 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:00:54] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:00:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:00:54.542465 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:00:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_BnQi9SZ1c98uvl message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:00:54] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +INFO:root:2025-01-30 10:00:54.860166 : Security check : IP adresse '127.0.0.1' connected +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_mTOEsylArECdyj message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:00:54] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:00:54.872971 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:00:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:00:54.920240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:00:54.930227 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:00:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:01:00.017620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:01:01.225965 : Get_Given_Code_Promo - Le code promo '10000' n'existe pas +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:01:01] "POST /myclass/api/Get_Given_Code_Promo/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:01:08.768809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:01:08.772126 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data= +INFO:root:2025-01-30 10:01:08.782928 : createOrder La valeur de la remise n'est pas correcte +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:01:08] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij response_code=404 +DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such subscription: \'sub_1OtUPMAbmaEugrFThoDKBIij\'",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_xvbHLBGmZepNiK?t=1738227668",\n "type": "invalid_request_error"\n }\n}\n' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_xvbHLBGmZepNiK message='Dashboard link for request' +INFO:stripe:error_code=resource_missing error_message="No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij'" error_param=id error_type=invalid_request_error message='Stripe API error received' +INFO:root:2025-01-30 10:01:09.089999 : strip_update_subscription_plan -Request req_xvbHLBGmZepNiK: No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij' - ERRORRRR AT Line : 1175 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:01:09] "POST /myclass/api/strip_update_subscription_plan/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:03:23.166293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:03:23.171535 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 10:03:23.182714 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:03:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_gcCWQ5bOAElj3F message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:03:23] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:03:36.542062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:03:36.544613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:03:36.549126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:03:36.553127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:03:36.556391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:03:36] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:03:36.561257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:03:36.569238 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:03:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:03:36] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:03:36.581515 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:03:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_9AqwaLbUWHTO2Y message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:03:36] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:03:36.878980 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_os7EbuGAcJoxbl message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:03:36] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:03:36.890923 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:03:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:03:36.904475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:03:36.915264 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:03:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:03:40.240777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:03:40.246772 : Get_Given_Code_Promo - Le code promo '1000' n'existe pas +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:03:40] "POST /myclass/api/Get_Given_Code_Promo/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:03:42.669703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:03:42.673332 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data= +INFO:root:2025-01-30 10:03:42.683163 : createOrder La valeur de la remise n'est pas correcte +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:03:42] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij response_code=404 +DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such subscription: \'sub_1OtUPMAbmaEugrFThoDKBIij\'",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_ZE9L2qPMYTJz5T?t=1738227822",\n "type": "invalid_request_error"\n }\n}\n' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_ZE9L2qPMYTJz5T message='Dashboard link for request' +INFO:stripe:error_code=resource_missing error_message="No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij'" error_param=id error_type=invalid_request_error message='Stripe API error received' +INFO:root:2025-01-30 10:03:42.982278 : strip_update_subscription_plan -Request req_ZE9L2qPMYTJz5T: No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij' - ERRORRRR AT Line : 1175 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:03:42] "POST /myclass/api/strip_update_subscription_plan/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:05:20.791478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:05:20.797944 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 10:05:20.813991 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:05:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_w7B04oVERiCEI6 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:05:21] "POST /myclass/api/get_payement_mode/ 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 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-30 10:06:56.680811 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-30 10:06:56.680811 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-30 10:06:56.680811 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-30 10:06:56.680811 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-30 10:06:56.681815 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-30 10:06:56.788921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:06:56.793434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:06:56.798440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:06:56.804556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:06:56.807627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:06:56.816586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:06:56.834799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:06:56.848313 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-30 10:06:56.850417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:06:56.859528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:06:56.870870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:06:56.875873 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:06:56.881872 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:06:56.885870 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_zkcynOeHJKjnKM message='Dashboard link for request' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_narBQw4wb6UP3C message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:57] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:57] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:06:58.227071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:06:58.230055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:06:58.234477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:06:58.241554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:06:58.245698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:58] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:06:58.256270 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +INFO:root:2025-01-30 10:06:58.258288 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:58] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:06:58.266285 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_JPBJW6pEDfkERE message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:58] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_AbtfZb2ZvigDSw message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:58] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:06:58.729842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:06:58.732844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:06:58.743433 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-30 10:06:58.743433 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:06:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:07:05.780070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:07:07.963502 : Get_Given_Code_Promo - Le code promo '100' n'existe pas +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:07:07] "POST /myclass/api/Get_Given_Code_Promo/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:07:08.405571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:07:08.413045 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data= +INFO:root:2025-01-30 10:07:08.428946 : createOrder La valeur de la remise n'est pas correcte +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:07:08] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij response_code=404 +DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such subscription: \'sub_1OtUPMAbmaEugrFThoDKBIij\'",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_4670tRgBFb4Qs4?t=1738228027",\n "type": "invalid_request_error"\n }\n}\n' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_4670tRgBFb4Qs4 message='Dashboard link for request' +INFO:stripe:error_code=resource_missing error_message="No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij'" error_param=id error_type=invalid_request_error message='Stripe API error received' +INFO:root:2025-01-30 10:07:08.751856 : strip_update_subscription_plan -Request req_4670tRgBFb4Qs4: No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij' - ERRORRRR AT Line : 1175 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:07:08] "POST /myclass/api/strip_update_subscription_plan/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:07:45.828542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:07:45.833951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:07:45.837306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:07:45.841510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:07:45] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:07:45.852718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:07:45.855715 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 10:07:45.860224 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:07:45] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:07:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:07:45.868433 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:07:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_MRS6wpgKd7aUA4 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:07:46] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:07:46.215702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:07:46.224065 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:07:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_rlK7zVIgVLyJfo message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:07:46] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:07:46.418118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:07:46.429116 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:07:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:11:50.901660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:11:50.910090 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:11:50.920686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:11:50.925687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:11:50.931789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:11:50.935802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:11:50] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:11:50] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 10:11:51.037291 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:11:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:11:51.042291 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:11:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_drahdfaPatIixq message='Dashboard link for request' +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:11:51] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_0QLSydysgd3CRn message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:11:51] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:11:51.405201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:11:51.417285 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:11:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:11:51.434128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:11:51.446494 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:11:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:12:14.096102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:12:14.106794 : Get_Given_Code_Promo - Le code promo 'sds' n'existe pas +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:12:14] "POST /myclass/api/Get_Given_Code_Promo/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:12:18.062965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:12:18.065996 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data= +INFO:root:2025-01-30 10:12:18.076460 : createOrder La valeur de la remise n'est pas correcte +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:12:18] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij response_code=404 +DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such subscription: \'sub_1OtUPMAbmaEugrFThoDKBIij\'",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_jhlgbvVqKpagvf?t=1738228337",\n "type": "invalid_request_error"\n }\n}\n' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_jhlgbvVqKpagvf message='Dashboard link for request' +INFO:stripe:error_code=resource_missing error_message="No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij'" error_param=id error_type=invalid_request_error message='Stripe API error received' +INFO:root:2025-01-30 10:12:18.356405 : strip_update_subscription_plan -Request req_jhlgbvVqKpagvf: No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij' - ERRORRRR AT Line : 1175 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:12:18] "POST /myclass/api/strip_update_subscription_plan/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:12:42.836120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:12:42.842135 : Get_Given_Code_Promo - Le code promo '' n'existe pas +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:12:42] "POST /myclass/api/Get_Given_Code_Promo/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:12:52.076874 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:12:52.095582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:12:52.101407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:12:52] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:12:52.109867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:12:52.114706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:12:52.121123 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-30 10:12:52.124108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:12:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:12:52] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 10:12:52.139209 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:12:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_pTRmlNKNVdUUV3 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:12:52] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_WIYhGCsQEzHhA7 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:12:52] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:12:52.561634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:12:52.566689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:12:52.573689 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:12:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:12:52.583608 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:12:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:12:57.842043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:12:57.850010 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data= +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij response_code=404 +DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such subscription: \'sub_1OtUPMAbmaEugrFThoDKBIij\'",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_3kdUwfvjBrbuUr?t=1738228377",\n "type": "invalid_request_error"\n }\n}\n' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_3kdUwfvjBrbuUr message='Dashboard link for request' +INFO:stripe:error_code=resource_missing error_message="No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij'" error_param=id error_type=invalid_request_error message='Stripe API error received' +INFO:root:2025-01-30 10:12:58.576427 : strip_update_subscription_plan -Request req_3kdUwfvjBrbuUr: No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij' - ERRORRRR AT Line : 1175 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:12:58] "POST /myclass/api/strip_update_subscription_plan/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=query=customer%3A%27cus_PiwFGatTspm9yu%27 +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 response_code=200 +DEBUG:stripe:body='{\n "object": "search_result",\n "data": [],\n "has_more": false,\n "next_page": null,\n "url": "/v1/invoices/search"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_IwGMfjP9po8Ypm message='Dashboard link for request' +INFO:root:2025-01-30 10:13:12.277291 : UpdataPartnerRankingClass - Le RANKING de 15 ont été mise à jour avec la valeur {'display_rank': '10', 'date_update': '2025-01-30 10:13:12.156897'} +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:13:12] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:13:12.292289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:13:12] "POST /myclass/api/Check_MySy_LMS_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:13:44.050830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:13:44.063862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:13:44.071398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:13:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:13:44.084707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:13:44.095996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:13:44.103325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:13:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:13:44.127373 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:13:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:13:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:13:44.141357 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:13:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:13:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:13:44.543840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:13:44.548311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:13:44.557331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:13:44.568898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:13:44.571894 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:13:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:13:44.591009 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:13:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_iafQvBa3VSv5dQ message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:13:44] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_DBM9Iva1n1jYSA message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:13:44] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:14:04.362057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:04.387443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:04.392444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:04.396266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:04] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:14:04.408676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:04.414710 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:14:04.417191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:04] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 10:14:04.432124 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_w724mkFcLFc8pD message='Dashboard link for request' +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:04] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_Vtx1F9Xt5DGPri message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:04] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:14:04.865147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:04.870362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:04.880358 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:14:04.884359 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:14:16.766801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:16.781800 : Get_Given_Code_Promo - Le code promo '' n'existe pas +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:16] "POST /myclass/api/Get_Given_Code_Promo/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:14:20.838827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:20.850829 : Get_Given_Code_Promo - Le code promo '' n'existe pas +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:20] "POST /myclass/api/Get_Given_Code_Promo/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:14:24.536758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:24.541778 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data= +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij response_code=404 +DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such subscription: \'sub_1OtUPMAbmaEugrFThoDKBIij\'",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_LWE1RsPYOkaSGs?t=1738228464",\n "type": "invalid_request_error"\n }\n}\n' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_LWE1RsPYOkaSGs message='Dashboard link for request' +INFO:stripe:error_code=resource_missing error_message="No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij'" error_param=id error_type=invalid_request_error message='Stripe API error received' +INFO:root:2025-01-30 10:14:24.845483 : strip_update_subscription_plan -Request req_LWE1RsPYOkaSGs: No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij' - ERRORRRR AT Line : 1175 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:24] "POST /myclass/api/strip_update_subscription_plan/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=query=customer%3A%27cus_PiwFGatTspm9yu%27 +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 response_code=200 +DEBUG:stripe:body='{\n "object": "search_result",\n "data": [],\n "has_more": false,\n "next_page": null,\n "url": "/v1/invoices/search"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_RcoZXedpvxrwwt message='Dashboard link for request' +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\tDev MySy Training
\n\t\t\t\t\t1 place du test
\n\t\t\t\t\t75009 Paris
\n\t\t\t\t\tFrance
\n\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tFacture n° FACT_251000317\n\n\n\t\t\t\t
\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t
Date de facture: 30/01/2025 Date échéance : 30/01/2025
\n\n\t\t\t\t\n\t\t\t\t\tOrigine : MySy_00OFY5\n\t\t\t\t\n\n\t\t\t\t
 
\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t
DescriptionQuantitéPrix unitaireMontant
Gold999990899910.0
\n\t\t\t\t\n\n\t\t\t\t
 
\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
    Montant HT: 899910.0
    TVA 20% : 179982.0
    Montant TTC : 1079892.0
\n\n\n\t\t\t
\n\t\t\t
 
\n\t\t\t
 
\n\t\t\t
 
\n\n\n\n\t\t\n\n\t\n\t
\n\t
\n\t\t\n\n\t\t\t

MySy Training
\n\n\t\t\t\tCour du Havre 1, 75008, Paris
\n\n\t\t\t\tMySy Training Technology (MTT), société par actions simplifiée au capital de 1000 euros, dont le siège\n\t\t\t\tsocial est\n\t\t\t\tsitué 2, place des magnolias, 77680, Roissy en Brie, immatriculée au Registre du Commerce et des\n\t\t\t\tSociétés sous le numéro 917 500 860 R.C.S. Melun\n\t\t\t

\n\t\t\n\t
\n\n\n' + dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_251000317.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'https://img.mysy-training.com/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='https', netloc='img.mysy-training.com', path='/MYSY-LOGO-BLUE.png', params='', query='', fragment=''), 'https') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Sending request for https://img.mysy-training.com/MYSY-LOGO-BLUE.png with httplib +DEBUG:xhtml2pdf:Uri parsed: https://img.mysy-training.com/MYSY-LOGO-BLUE.png +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 0 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 1 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 2 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 3 has width 0.0 +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:paramiko.transport:starting thread (client mode): 0x4890ae00 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000317.pdf', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000317.pdf', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000317.pdf') +INFO:root:2025-01-30 10:14:31.412856 : convertHtmlToPdf DEPLACEMENT DE ./Invoices/invoice_FACT_251000317.pdf VERS /var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000317.pdf EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 10:14:31.413874 : Impression facture N° FACT_251000317 OK +INFO:root:2025-01-30 10:14:31.420480 : Impression de mettre à jour la date de la prochaine facturation de la commande : ° MySy_00OFY5 +INFO:root:2025-01-30 10:14:31.433545 : UpdataPartnerRankingClass - Le RANKING de 15 ont été mise à jour avec la valeur {'display_rank': '30', 'date_update': '2025-01-30 10:14:31.426529'} +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:31] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:14:31.440945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:32] "POST /myclass/api/Check_MySy_LMS_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:14:36.491754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:36.495880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:36.501893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:36.503897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:14:36.510209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:14:36.520570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:36.525560 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:14:36.536115 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:14:36.694912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:36.700154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:36.705475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:36.711411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:14:36.725449 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +INFO:root:2025-01-30 10:14:36.728436 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_XghDR3GQog5uWB message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:37] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_rur1d1pvQcocXs message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:14:37] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:15:43.436601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:15:43.459597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:15:43.470601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:15:43.480600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:15:43.496619 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:15:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:15:43] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:15:43.523158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:15:43.525157 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-30 10:15:43.538153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:15:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:15:43] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_oepIAj2iMR4YF7 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:15:43] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:15:43.910955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:15:43.927949 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:15:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_bbjFM00vAtwtYF message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:15:43] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:15:43.983671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:15:44.002666 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:15:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:15:49.595558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:15:49.602312 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data= +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij response_code=404 +DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such subscription: \'sub_1OtUPMAbmaEugrFThoDKBIij\'",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_Do00nKZc8KBFea?t=1738228549",\n "type": "invalid_request_error"\n }\n}\n' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_Do00nKZc8KBFea message='Dashboard link for request' +INFO:stripe:error_code=resource_missing error_message="No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij'" error_param=id error_type=invalid_request_error message='Stripe API error received' +INFO:root:2025-01-30 10:15:49.916063 : strip_update_subscription_plan -Request req_Do00nKZc8KBFea: No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij' - ERRORRRR AT Line : 1175 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:15:49] "POST /myclass/api/strip_update_subscription_plan/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=query=customer%3A%27cus_PiwFGatTspm9yu%27 +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 response_code=200 +DEBUG:stripe:body='{\n "object": "search_result",\n "data": [],\n "has_more": false,\n "next_page": null,\n "url": "/v1/invoices/search"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_X1I8PnBclFGIoi message='Dashboard link for request' +INFO:root:2025-01-30 10:15:51.449003 : UpdataPartnerRankingClass - Le RANKING de 15 ont été mise à jour avec la valeur {'display_rank': '10', 'date_update': '2025-01-30 10:15:51.433563'} +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:15:51] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:15:51.455719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:15:51] "POST /myclass/api/Check_MySy_LMS_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:01.808912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:01.813019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:01.818021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:01.826559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:01.837310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:01.845794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:01.863776 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:01.873928 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:02.153397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:02.158399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:02.167084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:02.172079 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 10:16:02.189075 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:02.195080 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_nedwmTnbx77IlN message='Dashboard link for request' +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:02] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_nzLRAGtq0tFIYV message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:02] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:39.196266 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:39.198275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:39.206269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:39] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:39.218298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:39.223297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:39.236827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:39.246826 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:39] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:39] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:39] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:39.283105 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:39.582562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:39.589565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:39.598565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:39.611553 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +INFO:root:2025-01-30 10:16:39.628579 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:39.635129 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_7zGuD2h53g1y4V message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:39] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_gsCVcQGh16NiJP message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:39] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:44.925867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:44.929312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:44.935425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:44.936458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:44.942213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:44.944468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:44.948931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:44.953458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:44.963277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:44] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:44.968751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:44] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.491424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.497723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.504838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.506841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.513834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.520857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.524854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.535891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.537917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.545316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.549960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.554719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.562034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.569398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.574904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.578743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.584627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.589658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.595360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.598371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.602941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.609268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.619051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.626401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.631268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.639797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.642795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.647207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.653730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.660728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.669331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.673875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.677854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.687463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.696468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.703715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.711716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.716711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.724727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.729729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.734374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.737901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.746408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.750615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.760401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.766594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.771600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.776230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.781858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.788286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.792448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.799706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.802497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.806489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.812491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.817490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.826190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.829527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:45.833525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:45.837071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:59.110802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:59] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:59.796792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:59.801500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:59.806072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:59.812937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:59.820462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:59.825937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:59.832746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:59.833990 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:59.849447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:59.857544 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:59.972389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:59.976387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:59.981385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:16:59.986908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:16:59] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:16:59.995914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:00.002914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:00.008917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:00] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:00.022754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:00.033087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:00.035327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:00] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:00] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:00] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:16.574689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:16.581689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:16.587689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:16.595680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:16.606158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:16.614673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:16] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:16] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:16] "POST /myclass/api/Get_List_Activite_Assign_To/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:16] "POST /myclass/api/Get_List_Entity_Activite/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:18.699545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:18.703956 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:18.710153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:18.716783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:18.723051 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +INFO:root:2025-01-30 10:17:18.728937 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_fZ7teOQrXKwAti message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:19] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_qEgkF74WLxv7IH message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:19] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:22.811470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:22.814470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:22.818464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:22.821465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:22] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:22.831589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:22] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:22.836677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:22.842200 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:22.847383 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_gVi4n1hEfWd7TV message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:23] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_tUmpUQnloOgfh5 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:23] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:23.188139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:23.197538 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:23.208844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:23.218875 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:30.631243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:30.636400 : Get_Given_Code_Promo - Le code promo '' n'existe pas +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:30] "POST /myclass/api/Get_Given_Code_Promo/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:36.457210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:36.462217 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data= +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij response_code=404 +DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such subscription: \'sub_1OtUPMAbmaEugrFThoDKBIij\'",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_bErR1UFBD34Ssa?t=1738228656",\n "type": "invalid_request_error"\n }\n}\n' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_bErR1UFBD34Ssa message='Dashboard link for request' +INFO:stripe:error_code=resource_missing error_message="No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij'" error_param=id error_type=invalid_request_error message='Stripe API error received' +INFO:root:2025-01-30 10:17:36.886292 : strip_update_subscription_plan -Request req_bErR1UFBD34Ssa: No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij' - ERRORRRR AT Line : 1175 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:36] "POST /myclass/api/strip_update_subscription_plan/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=query=customer%3A%27cus_PiwFGatTspm9yu%27 +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 response_code=200 +DEBUG:stripe:body='{\n "object": "search_result",\n "data": [],\n "has_more": false,\n "next_page": null,\n "url": "/v1/invoices/search"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_QQr6zrC3p7LuxP message='Dashboard link for request' +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\tDev MySy Training
\n\t\t\t\t\t1 place du test
\n\t\t\t\t\t75009 Paris
\n\t\t\t\t\tFrance
\n\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tFacture n° FACT_251000318\n\n\n\t\t\t\t
\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t
Date de facture: 30/01/2025 Date échéance : 30/01/2025
\n\n\t\t\t\t\n\t\t\t\t\tOrigine : MySy_00kZWq\n\t\t\t\t\n\n\t\t\t\t
 
\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t
DescriptionQuantitéPrix unitaireMontant
Gold11109099900.0
\n\t\t\t\t\n\n\t\t\t\t
 
\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
    Montant HT: 99900.0
    TVA 20% : 19980.0
    Montant TTC : 119880.0
\n\n\n\t\t\t
\n\t\t\t
 
\n\t\t\t
 
\n\t\t\t
 
\n\n\n\n\t\t\n\n\t\n\t
\n\t
\n\t\t\n\n\t\t\t

MySy Training
\n\n\t\t\t\tCour du Havre 1, 75008, Paris
\n\n\t\t\t\tMySy Training Technology (MTT), société par actions simplifiée au capital de 1000 euros, dont le siège\n\t\t\t\tsocial est\n\t\t\t\tsitué 2, place des magnolias, 77680, Roissy en Brie, immatriculée au Registre du Commerce et des\n\t\t\t\tSociétés sous le numéro 917 500 860 R.C.S. Melun\n\t\t\t

\n\t\t\n\t
\n\n\n' + dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_251000318.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'https://img.mysy-training.com/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='https', netloc='img.mysy-training.com', path='/MYSY-LOGO-BLUE.png', params='', query='', fragment=''), 'https') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Sending request for https://img.mysy-training.com/MYSY-LOGO-BLUE.png with httplib +DEBUG:xhtml2pdf:Uri parsed: https://img.mysy-training.com/MYSY-LOGO-BLUE.png +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 0 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 1 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 2 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 3 has width 0.0 +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:paramiko.transport:starting thread (client mode): 0x489fee60 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000318.pdf', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000318.pdf', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000318.pdf') +INFO:root:2025-01-30 10:17:41.569959 : convertHtmlToPdf DEPLACEMENT DE ./Invoices/invoice_FACT_251000318.pdf VERS /var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000318.pdf EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 10:17:41.579956 : Impression facture N° FACT_251000318 OK +INFO:root:2025-01-30 10:17:41.594991 : Impression de mettre à jour la date de la prochaine facturation de la commande : ° MySy_00kZWq +INFO:root:2025-01-30 10:17:41.667550 : UpdataPartnerRankingClass - Le RANKING de 15 ont été mise à jour avec la valeur {'display_rank': '30', 'date_update': '2025-01-30 10:17:41.652534'} +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:41] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:41.787145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:43] "POST /myclass/api/Check_MySy_LMS_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:56.339086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:56.346086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:56.352086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:56.362089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:56.373080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:56.384089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:56.390084 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:56.411614 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:56.766607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:56.772610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:56.777613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:17:56.788042 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 10:17:56.803789 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:17:56.808106 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_vqWJc29RUhe3xJ message='Dashboard link for request' +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:57] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_P99npCL20KjxuL message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:17:57] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\lms_chamilo\\mysy_lms.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-01-30 10:23:20.089017 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-01-30 10:23:20.089017 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-01-30 10:23:20.089017 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-01-30 10:23:20.089017 : ++ FLASK PORT 5001 ++ +INFO:root:2025-01-30 10:23:20.089017 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-01-30 10:41:19.787852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:19.789854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:19.790853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:19.791849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:19.794139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:19.795219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:19.798736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:19.798736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:19.804041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:19.807829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:19] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:19] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:19] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:19] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.225492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.229136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.232448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.234452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.240903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.245283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.247430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.252757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.259435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.263518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.267582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.272273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.277229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.283471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.288641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.293886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.298160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.302681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.306676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.311102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.314290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.318779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.323097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.329038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.333715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.338389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.343552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.347175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.352368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.358769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.362765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.364823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.371243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.376243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.381262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.386349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.395998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.399455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.402991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.408193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.411599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.416912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.420618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.425877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.427976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.432140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.439759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.442893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.447776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.449809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.456217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.462929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.467010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.473128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.478972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.484813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.489679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:20.493087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.498327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:20.503580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:26.586830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:26] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:27.052638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:27.055643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:27.062186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:27.067791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:27.071143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:27.080774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:27.088884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:27.100522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:27.111324 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:27.119899 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:27.200327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:27.203526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:27.206544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:27.209919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:27.215615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:27.222910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:27.226999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:27.232997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:27.238997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:27.252474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:33.886664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:33.889461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:33.893960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:33.901129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:33.909947 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:33.919103 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_UnFX9EFOhZfCZ1 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:34] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_4R5UUEmaLAGqdu message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:34] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:40.674764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:40.678863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:40.680088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:40.686649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:40.693662 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:40] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:40.698664 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-30 10:41:40.700657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:40] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 10:41:40.718458 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_1vyVQCvjABtisM message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:41] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_gdI6yj7ETGzW10 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:41] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:41.094560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:41.105248 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:41.114999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:41.125944 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:44.718193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:44.722364 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data= +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij response_code=404 +DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such subscription: \'sub_1OtUPMAbmaEugrFThoDKBIij\'",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_MfpyJgjreJeV5V?t=1738230104",\n "type": "invalid_request_error"\n }\n}\n' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_MfpyJgjreJeV5V message='Dashboard link for request' +INFO:stripe:error_code=resource_missing error_message="No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij'" error_param=id error_type=invalid_request_error message='Stripe API error received' +INFO:root:2025-01-30 10:41:46.056495 : strip_update_subscription_plan -Request req_MfpyJgjreJeV5V: No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij' - ERRORRRR AT Line : 1175 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:46] "POST /myclass/api/strip_update_subscription_plan/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=query=customer%3A%27cus_PiwFGatTspm9yu%27 +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 response_code=200 +DEBUG:stripe:body='{\n "object": "search_result",\n "data": [],\n "has_more": false,\n "next_page": null,\n "url": "/v1/invoices/search"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_aZRlpGcgaIBztT message='Dashboard link for request' +INFO:root:2025-01-30 10:41:53.427501 : UpdataPartnerRankingClass - Le RANKING de 15 ont été mise à jour avec la valeur {'display_rank': '10', 'date_update': '2025-01-30 10:41:53.369400'} +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:53] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:53.433013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:53] "POST /myclass/api/Check_MySy_LMS_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:59.482927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:59.486715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:59.492847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:59.498850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:59.504134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:59.515640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:59.519086 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:59.528314 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:59.728653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:59.732673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:59.737205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:41:59.745152 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 10:41:59.757613 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:41:59.761346 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:41:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_cxCs17hrYah8ea message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:42:00] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_anW7NhZLUIlKDI message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:42:00] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:42:09.869615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:42:09.872157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:42:09.876699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:42:09.882106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:42:09] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:42:09.886545 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-30 10:42:09.887552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:42:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:42:09.892236 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:42:09] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 10:42:09.907155 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:42:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_jLr3medx2QK6ZY message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:42:10] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_CEN2TjPELiO25O message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:42:10] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:42:10.215401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:42:10.226986 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:42:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:42:10.241817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:42:10.253279 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:42:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:42:23.950073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:42:23.953615 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data= +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij response_code=404 +DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such subscription: \'sub_1OtUPMAbmaEugrFThoDKBIij\'",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_eicBUWr7HORUYn?t=1738230143",\n "type": "invalid_request_error"\n }\n}\n' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_eicBUWr7HORUYn message='Dashboard link for request' +INFO:stripe:error_code=resource_missing error_message="No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij'" error_param=id error_type=invalid_request_error message='Stripe API error received' +INFO:root:2025-01-30 10:42:24.288728 : strip_update_subscription_plan -Request req_eicBUWr7HORUYn: No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij' - ERRORRRR AT Line : 1175 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:42:24] "POST /myclass/api/strip_update_subscription_plan/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=query=customer%3A%27cus_PiwFGatTspm9yu%27 +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 response_code=200 +DEBUG:stripe:body='{\n "object": "search_result",\n "data": [],\n "has_more": false,\n "next_page": null,\n "url": "/v1/invoices/search"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_4uYCXbXA0ZvR1m message='Dashboard link for request' +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\tDev MySy Training
\n\t\t\t\t\t1 place du test
\n\t\t\t\t\t75009 Paris
\n\t\t\t\t\tFrance
\n\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tFacture n° FACT_251000319\n\n\n\t\t\t\t
\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t
Date de facture: 30/01/2025 Date échéance : 30/01/2025
\n\n\t\t\t\t\n\t\t\t\t\tOrigine : MySy_00Mz-Q\n\t\t\t\t\n\n\t\t\t\t
 
\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t
DescriptionQuantitéPrix unitaireMontant
Gold992090892800.0
\n\t\t\t\t\n\n\t\t\t\t
 
\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
    Montant HT: 892800.0
    TVA 20% : 178560.0
    Montant TTC : 1071360.0
\n\n\n\t\t\t
\n\t\t\t
 
\n\t\t\t
 
\n\t\t\t
 
\n\n\n\n\t\t\n\n\t\n\t
\n\t
\n\t\t\n\n\t\t\t

MySy Training
\n\n\t\t\t\tCour du Havre 1, 75008, Paris
\n\n\t\t\t\tMySy Training Technology (MTT), société par actions simplifiée au capital de 1000 euros, dont le siège\n\t\t\t\tsocial est\n\t\t\t\tsitué 2, place des magnolias, 77680, Roissy en Brie, immatriculée au Registre du Commerce et des\n\t\t\t\tSociétés sous le numéro 917 500 860 R.C.S. Melun\n\t\t\t

\n\t\t\n\t
\n\n\n' + dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_251000319.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'https://img.mysy-training.com/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='https', netloc='img.mysy-training.com', path='/MYSY-LOGO-BLUE.png', params='', query='', fragment=''), 'https') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Sending request for https://img.mysy-training.com/MYSY-LOGO-BLUE.png with httplib +DEBUG:xhtml2pdf:Uri parsed: https://img.mysy-training.com/MYSY-LOGO-BLUE.png +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 0 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 1 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 2 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 3 has width 0.0 +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2c0700 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000319.pdf', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000319.pdf', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000319.pdf') +INFO:root:2025-01-30 10:42:32.978770 : convertHtmlToPdf DEPLACEMENT DE ./Invoices/invoice_FACT_251000319.pdf VERS /var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000319.pdf EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 10:42:32.980769 : Impression facture N° FACT_251000319 OK +INFO:root:2025-01-30 10:42:32.983769 : Impression de mettre à jour la date de la prochaine facturation de la commande : ° MySy_00Mz-Q +INFO:root:2025-01-30 10:42:32.998416 : UpdataPartnerRankingClass - Le RANKING de 15 ont été mise à jour avec la valeur {'display_rank': '30', 'date_update': '2025-01-30 10:42:32.989892'} +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:42:32] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:42:34.377244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:42:36] "POST /myclass/api/Check_MySy_LMS_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:43:01.886361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:43:01.891086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:43:01.895093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:43:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:43:01.900084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:43:01.909214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:43:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:43:01.915224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:43:01.925988 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:43:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:43:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:43:01.938440 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:43:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:43:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 10:43:02.130696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:43:02.134698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:43:02.140027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:43:02.146467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 10:43:02.155594 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:43:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 10:43:02.162403 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:43:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_v6B0xAogFSDTzW message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:43:02] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_4KYIYX8HSDn1g9 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 10:43:02] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:16:35.101730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:16:35.235564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:16:35.239243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:16:35.243484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:16:35.247966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:16:35.254580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:16:35.259973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:35] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:16:35.266437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:35] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:16:35.272011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:16:35.275743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:16:35.280020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:35] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:35] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:35] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:16:53.576729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:16:53.582031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:16:53.584017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:53] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:16:53.589333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:53] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:16:53.635132 : Get_LMS_Logo_And_Bannier_Img - Ce partenaire n'a pas de theme associé +INFO:root:2025-01-30 11:16:53.635132 : Get_LMS_Logo_And_Bannier_Img - Ce partenaire n'a pas de theme associé +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:53] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:16:53] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:17:04.323708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:17:04] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:17:10.752029 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9f267490 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Adding ssh-ed25519 host key for 88.170.110.220: b'e44b0a61fb86892f0b6973a38e33cec5' +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] EOF received (0) +DEBUG:paramiko.transport:[chan 1] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:[chan 1] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 1 opened. +DEBUG:paramiko.transport:[chan 1] Sesch channel 1 request ok +DEBUG:paramiko.transport:[chan 1] EOF received (1) +DEBUG:paramiko.transport:[chan 2] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 1] EOF sent (1) +DEBUG:paramiko.transport:[chan 2] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 2 opened. +DEBUG:paramiko.transport:[chan 2] Sesch channel 2 request ok +DEBUG:paramiko.transport:[chan 2] EOF received (2) +DEBUG:paramiko.transport:[chan 3] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 2] EOF sent (2) +DEBUG:paramiko.transport:[chan 3] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 3 opened. +DEBUG:paramiko.transport:[chan 3] Sesch channel 3 request ok +DEBUG:paramiko.transport:[chan 3] EOF received (3) +DEBUG:paramiko.transport:EOF in transport thread +DEBUG:paramiko.transport:[chan 3] EOF sent (3) +DEBUG:paramiko.transport:Dropping user packet because connection is dead. +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:17:16] "POST /myclass/api/Lms_Config_Theme_and_Logo/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:23:35.112494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:23:35.116911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:23:35] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:23:35.125408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:23:35.132683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:23:35] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f383970 +DEBUG:paramiko.transport:starting thread (client mode): 0x9f380310 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:userauth is OK +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:23:40] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:23:40] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:39:50.536288 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff39300 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] remove(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +INFO:root:2025-01-30 11:39:59.469303 : Lms_Delete_Banniere_File SUPPRESSION DU FICHIER DE /var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:39:59] "POST /myclass/api/Lms_Delete_Banniere_File/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 11:40:14.456618 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9f3817b0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +INFO:root:2025-01-30 11:40:17.914303 : Lms_Add_BG_File DEPLACEMENT DE ./Data/Corinnebannierev2_20250130114014.png VERS /var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:40:17] "POST /myclass/api/Lms_Add_BG_File/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:43:35.171733 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff38e20 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +INFO:root:2025-01-30 11:43:41.730304 : Lms_Add_Logo_File DEPLACEMENT DE ./Data/logocorinnebondublackadaptedmysy_20250130114335.png VERS /var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:43:41] "POST /myclass/api/Lms_Add_Logo_File/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:46:58.644219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:46:58.664591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:46:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:46:58.690531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:46:58.696865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:46:58.710867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:46:58.724892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:46:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:46:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:46:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:46:58.766658 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:46:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:46:58.772380 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:46:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:46:58.876252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:46:58.884297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:46:58.894743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:46:58] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:46:58.906979 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:46:58] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f44c3d0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff399f0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +INFO:root:2025-01-30 11:46:59.323959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:46:59.330483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:46:59.343393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:46:59] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:46:59.358822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:46:59] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f475c00 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:starting thread (client mode): 0x9f4766b0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +INFO:root:2025-01-30 11:46:59.402019 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +INFO:root:2025-01-30 11:46:59.407018 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:=== Key exchange possibilities === +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:46:59] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:starting thread (client mode): 0x9f491510 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +DEBUG:paramiko.transport:userauth is OK +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:47:05] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:47:05] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:47:05] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:47:05] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:47:05] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:47:13.763986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:47:13.778705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:47:13] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:47:13] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:51:29.245937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:51:29.253192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:51:29] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff383a0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:51:34] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:55:18.645556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:55:18.657716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:55:18] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff397e0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:55:25] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:56:49.445520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:56:49.451990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:56:49] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f474e50 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:56:56] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:root:2025-01-30 11:57:21.834106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 11:57:21.837108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:57:21] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff3beb0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 11:57:25] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:01:50.024193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:01:50.030237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:01:50] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff39a20 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:01:57] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 12:04:50.290085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:04:50.297615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:04:50.301616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:04:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:04:50.318065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:04:50.326221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:04:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:04:50.337257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:04:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:04:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:04:50.370258 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:04:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:04:50.388750 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:04:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:04:50.597124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:04:50.601117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:04:50.607258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:04:50] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:04:50.613974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:04:50] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2f49a0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:starting thread (client mode): 0x9fef26e0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:05:00] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:05:00] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:05:42.489839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:05:42.501618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:05:42] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2f7b50 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:05:46] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 12:06:45.149358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:06:45.153501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:06:45] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2c1b10 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:06:51] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 12:07:42.482474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:07:42.494971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:07:42] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2f5f90 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:07:46] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:07:59.424678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:07:59.429968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:07:59] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f3813c0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:08:04] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:08:55.445932 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2f61a0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] remove(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +INFO:root:2025-01-30 12:09:01.543231 : Lms_Delete_Logo_File SUPPRESSION DU FICHIER DE /var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:09:01] "POST /myclass/api/Lms_Delete_Logo_File/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:10:22.074798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:10:22.080802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:10:22.087640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:10:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:10:22.091879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:10:22.101641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:10:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:10:22.108829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:10:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:10:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:10:22.136538 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:10:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:10:22.152093 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:10:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:10:22.456288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:10:22.460286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:10:22] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:10:22.467304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:10:22.472778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:10:22] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f267c40 +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2c3760 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:10:26] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:10:26] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 12:11:03.871547 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9f4762f0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +INFO:root:2025-01-30 12:11:08.566585 : Lms_Add_Logo_File DEPLACEMENT DE ./Data/logocorinnebondublackadaptedmysy_20250130121103.png VERS /var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:11:08] "POST /myclass/api/Lms_Add_Logo_File/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:11:56.112582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:11:56.120094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:11:56.124669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:11:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:11:56.130223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:11:56.135295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:11:56.141207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:11:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:11:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:11:56.157919 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:11:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:11:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:11:56.167313 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:11:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:11:56.376409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:11:56.382566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:11:56] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:11:56.389849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:11:56.394370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:11:56] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f4760e0 +DEBUG:paramiko.transport:starting thread (client mode): 0x9f476830 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +INFO:root:2025-01-30 12:12:01.845021 : Get_LMS_Logo_And_Bannier_Img -[WinError 32] Le processus ne peut pas accéder au fichier car ce fichier est utilisé par un autre processus: './temp_direct/header-logo_52165.png' - Line : 2496 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:12:01] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:12:02] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 12:15:31.597966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:15:31.605430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:15:31] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f493f10 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:15:38] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 12:18:33.929819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:18:33.936042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:18:33] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2f7a30 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:18:40] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 12:18:51.924078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 12:18:51.928471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:18:51] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f492080 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:18:54] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 12:18:59.439985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:18:59] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:19:09.651045 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff386d0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Adding ssh-ed25519 host key for 88.170.110.220: b'e44b0a61fb86892f0b6973a38e33cec5' +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] EOF received (0) +DEBUG:paramiko.transport:[chan 1] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:[chan 1] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 1 opened. +DEBUG:paramiko.transport:[chan 1] Sesch channel 1 request ok +DEBUG:paramiko.transport:[chan 1] EOF received (1) +DEBUG:paramiko.transport:[chan 2] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 1] EOF sent (1) +DEBUG:paramiko.transport:[chan 2] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 2 opened. +DEBUG:paramiko.transport:[chan 2] Sesch channel 2 request ok +DEBUG:paramiko.transport:[chan 2] EOF received (2) +DEBUG:paramiko.transport:[chan 3] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 2] EOF sent (2) +DEBUG:paramiko.transport:[chan 3] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 3 opened. +DEBUG:paramiko.transport:[chan 3] Sesch channel 3 request ok +DEBUG:paramiko.transport:[chan 3] EOF received (3) +DEBUG:paramiko.transport:[chan 3] EOF sent (3) +DEBUG:paramiko.transport:Dropping user packet because connection is dead. +DEBUG:paramiko.transport:Dropping user packet because connection is dead. +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:19:14] "POST /myclass/api/Lms_Config_Theme_and_Logo/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:20:22.441419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:20:22] "POST /myclass/api/Lms_Add_BG_File/ HTTP/1.1" 500 - +INFO:root:2025-01-30 12:20:34.080362 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff3a2f0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] remove(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +INFO:root:2025-01-30 12:20:39.844811 : Lms_Delete_Banniere_File SUPPRESSION DU FICHIER DE /var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:20:39] "POST /myclass/api/Lms_Delete_Banniere_File/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:20:48.538967 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff3a9e0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png') +INFO:root:2025-01-30 12:20:49.201262 : Lms_Add_BG_File DEPLACEMENT DE ./Data/Corinnebannierev1_20250130122048.png VERS /var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/background.png EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:20:49] "POST /myclass/api/Lms_Add_BG_File/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:21:59.288149 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9fef2920 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] remove(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +INFO:root:2025-01-30 12:22:03.659479 : Lms_Delete_Logo_File SUPPRESSION DU FICHIER DE /var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:22:03] "POST /myclass/api/Lms_Delete_Logo_File/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 12:22:14.580716 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff38280 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png') +INFO:root:2025-01-30 12:22:16.007143 : Lms_Add_Logo_File DEPLACEMENT DE ./Data/logocorinnebondublackadaptedmysy_20250130122214.png VERS /var/www/html/chamilo_mysy_rec/web/css/themes/58-colasrail-theme/images/header-logo.png EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:22:16] "POST /myclass/api/Lms_Add_Logo_File/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 12:26:55.878731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:26:55] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 12:26:56.485945 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff391e0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Adding ssh-ed25519 host key for 88.170.110.220: b'e44b0a61fb86892f0b6973a38e33cec5' +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] EOF received (0) +DEBUG:paramiko.transport:[chan 1] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:[chan 1] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 1 opened. +DEBUG:paramiko.transport:[chan 1] Sesch channel 1 request ok +DEBUG:paramiko.transport:[chan 1] EOF received (1) +DEBUG:paramiko.transport:[chan 1] EOF sent (1) +DEBUG:paramiko.transport:[chan 2] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 2] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 2 opened. +DEBUG:paramiko.transport:[chan 2] Sesch channel 2 request ok +DEBUG:paramiko.transport:[chan 2] EOF received (2) +DEBUG:paramiko.transport:[chan 2] EOF sent (2) +DEBUG:paramiko.transport:[chan 3] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 3] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 3 opened. +DEBUG:paramiko.transport:[chan 3] Sesch channel 3 request ok +DEBUG:paramiko.transport:[chan 3] EOF received (3) +DEBUG:paramiko.transport:[chan 3] EOF sent (3) +DEBUG:paramiko.transport:Dropping user packet because connection is dead. +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 12:27:02] "POST /myclass/api/Lms_Config_Theme_and_Logo/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:40:40.581998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:40:40.588492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:40:40.599118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:40:40.606664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:40:40.614572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:40:40.625567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:40:40.652980 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:40:40] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:40:40.662085 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:40:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:40:40] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:40:40] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:40:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:40:40] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:48:28.976677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:48:28.982693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:48:28.988994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:48:28.997078 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 14:48:29.018231 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:48:29.044684 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_viIBM6xlFSLvFN message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:29] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_ViaFVmkn9x5ZH5 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:29] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:48:37.812338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:48:37.816335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:48:37.822334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:48:37.825630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:48:37.831097 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 14:48:37.840955 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-30 14:48:37.843047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:37] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:37] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:48:37.856311 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_jWdzg9NKuJ7afG message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:38] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +INFO:root:2025-01-30 14:48:38.172547 : Security check : IP adresse '127.0.0.1' connected +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_qLBNAHiKUVr61A message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:38] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:48:38.190151 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:48:38.235106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:48:38.246962 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:48:42.072791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:48:42.077812 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data= +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij response_code=404 +DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such subscription: \'sub_1OtUPMAbmaEugrFThoDKBIij\'",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_uONAWfKU277BOQ?t=1738244921",\n "type": "invalid_request_error"\n }\n}\n' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_uONAWfKU277BOQ message='Dashboard link for request' +INFO:stripe:error_code=resource_missing error_message="No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij'" error_param=id error_type=invalid_request_error message='Stripe API error received' +INFO:root:2025-01-30 14:48:42.436066 : strip_update_subscription_plan -Request req_uONAWfKU277BOQ: No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij' - ERRORRRR AT Line : 1175 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:42] "POST /myclass/api/strip_update_subscription_plan/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=query=customer%3A%27cus_PiwFGatTspm9yu%27 +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 response_code=200 +DEBUG:stripe:body='{\n "object": "search_result",\n "data": [],\n "has_more": false,\n "next_page": null,\n "url": "/v1/invoices/search"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_DTXufhATQFWUuH message='Dashboard link for request' +INFO:root:2025-01-30 14:48:45.782313 : UpdataPartnerRankingClass - Le RANKING de 15 ont été mise à jour avec la valeur {'display_rank': '10', 'date_update': '2025-01-30 14:48:45.717773'} +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:45] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:48:45.788850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:48:45] "POST /myclass/api/Check_MySy_LMS_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:49:02.863222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:49:02.867838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:49:02.874255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:49:02.880253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:49:02.888004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:49:02.895206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:49:02.903445 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:49:02.914025 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:49:03.103607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:49:03.108600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:49:03.112624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:49:03.116642 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 14:49:03.128678 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 14:49:03.135989 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_FRszk1VEntxq2n message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:03] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_dsVrlnPwMJiCr5 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:03] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:49:43.215595 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:49:43.218596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:49:43.222019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:49:43.228534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:49:43.237143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:43] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:49:43.238162 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-01-30 14:49:43.243473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:43] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:43] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:49:43.264661 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:49:43] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:50:21.935266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:50:21] "POST /myclass/api/update_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:50:22.481765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:50:22] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:54:09.357264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:54:09.361262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:54:09.365271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:54:09] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:54:09.375276 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:54:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:54:09] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:55:53.427252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:55:53.431508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:55:53.436847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:55:53.444852 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +INFO:root:2025-01-30 14:55:53.461605 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:55:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:55:53.474102 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:55:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_SKmJi5znEsoFro message='Dashboard link for request' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_46BHtRWlwct2JE message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:55:53] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:55:53] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:56:30.449992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:56:30.454916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:56:30.461678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:56:30.466052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:56:30.474547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:56:30.481495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:56:30.483492 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:56:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:56:30] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:56:30] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +INFO:root:2025-01-30 14:56:30.497859 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:56:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_JJFYuaI9CmLHf7 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:56:30] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_Q8gpDQBa5z7UaV message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:56:30] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:56:30.828091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:56:30.832571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:56:30.842690 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:56:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:56:30.846535 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:56:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:56:40.748765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:56:40.753405 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data= +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij response_code=404 +DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such subscription: \'sub_1OtUPMAbmaEugrFThoDKBIij\'",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_2hFRMZXmFVzb1J?t=1738245400",\n "type": "invalid_request_error"\n }\n}\n' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_2hFRMZXmFVzb1J message='Dashboard link for request' +INFO:stripe:error_code=resource_missing error_message="No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij'" error_param=id error_type=invalid_request_error message='Stripe API error received' +INFO:root:2025-01-30 14:56:41.060620 : strip_update_subscription_plan -Request req_2hFRMZXmFVzb1J: No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij' - ERRORRRR AT Line : 1175 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:56:41] "POST /myclass/api/strip_update_subscription_plan/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=query=customer%3A%27cus_PiwFGatTspm9yu%27 +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 response_code=200 +DEBUG:stripe:body='{\n "object": "search_result",\n "data": [],\n "has_more": false,\n "next_page": null,\n "url": "/v1/invoices/search"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_r1xjumAQlvvyrq message='Dashboard link for request' +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\tDev MySy Training
\n\t\t\t\t\t1 place du test
\n\t\t\t\t\t75009 Paris
\n\t\t\t\t\tFrance
\n\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tFacture n° FACT_251000320\n\n\n\t\t\t\t
\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t
Date de facture: 30/01/2025 Date échéance : 30/01/2025
\n\n\t\t\t\t\n\t\t\t\t\tOrigine : MySy_00-KkL\n\t\t\t\t\n\n\t\t\t\t
 
\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t
DescriptionQuantitéPrix unitaireMontant
Gold2209019800.0
\n\t\t\t\t\n\n\t\t\t\t
 
\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
    Montant HT: 19800.0
    TVA 20% : 3960.0
    Montant TTC : 23760.0
\n\n\n\t\t\t
\n\t\t\t
 
\n\t\t\t
 
\n\t\t\t
 
\n\n\n\n\t\t\n\n\t\n\t
\n\t
\n\t\t\n\n\t\t\t

MySy Training
\n\n\t\t\t\tCour du Havre 1, 75008, Paris
\n\n\t\t\t\tMySy Training Technology (MTT), société par actions simplifiée au capital de 1000 euros, dont le siège\n\t\t\t\tsocial est\n\t\t\t\tsitué 2, place des magnolias, 77680, Roissy en Brie, immatriculée au Registre du Commerce et des\n\t\t\t\tSociétés sous le numéro 917 500 860 R.C.S. Melun\n\t\t\t

\n\t\t\n\t
\n\n\n' + dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_251000320.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'https://img.mysy-training.com/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='https', netloc='img.mysy-training.com', path='/MYSY-LOGO-BLUE.png', params='', query='', fragment=''), 'https') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Sending request for https://img.mysy-training.com/MYSY-LOGO-BLUE.png with httplib +DEBUG:xhtml2pdf:Uri parsed: https://img.mysy-training.com/MYSY-LOGO-BLUE.png +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 0 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 1 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 2 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 3 has width 0.0 +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff3bc40 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000320.pdf', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000320.pdf', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000320.pdf') +INFO:root:2025-01-30 14:56:51.135986 : convertHtmlToPdf DEPLACEMENT DE ./Invoices/invoice_FACT_251000320.pdf VERS /var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_251000320.pdf EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:root:2025-01-30 14:56:51.136985 : Impression facture N° FACT_251000320 OK +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 14:56:51.153287 : Impression de mettre à jour la date de la prochaine facturation de la commande : ° MySy_00-KkL +INFO:root:2025-01-30 14:56:51.178544 : UpdataPartnerRankingClass - Le RANKING de 15 ont été mise à jour avec la valeur {'display_rank': '30', 'date_update': '2025-01-30 14:56:51.157375'} +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:56:51] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:56:51.185221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:56:52] "POST /myclass/api/Check_MySy_LMS_Account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:57:16.470789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:57:16.473109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:57:16.477188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:57:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:57:16.482712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:57:16.487913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:57:16.497492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:57:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:57:16.507101 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:57:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:57:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:57:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:57:16.518911 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:57:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:57:16.726560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:57:16.729864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:57:16.736369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:57:16.741481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:57:16.746482 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:57:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:root:2025-01-30 14:57:16.757070 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:57:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_q5wzrpIvhBwRmW message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:57:17] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1OtUP4AbmaEugrFTyo4CzC8h",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Dev MySy Training",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1710246358,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_yAzSmOFLTexmUt message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:57:17] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:58:20.689423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:58:20.692943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:58:20.697449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 14:58:20.700709 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:58:20] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:58:20] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:58:20.713736 : Get_LMS_Logo_And_Bannier_Img - Ce partenaire n'a pas de theme associé +INFO:root:2025-01-30 14:58:20.714731 : Get_LMS_Logo_And_Bannier_Img - Ce partenaire n'a pas de theme associé +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:58:20] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:58:20] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:58:31.306646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:58:31] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:58:33.666871 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9fef1b70 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Adding ssh-ed25519 host key for 88.170.110.220: b'e44b0a61fb86892f0b6973a38e33cec5' +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] EOF received (0) +DEBUG:paramiko.transport:[chan 1] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:[chan 1] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 1 opened. +DEBUG:paramiko.transport:[chan 1] Sesch channel 1 request ok +DEBUG:paramiko.transport:[chan 1] EOF received (1) +DEBUG:paramiko.transport:[chan 2] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 1] EOF sent (1) +DEBUG:paramiko.transport:[chan 2] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 2 opened. +DEBUG:paramiko.transport:[chan 2] Sesch channel 2 request ok +DEBUG:paramiko.transport:[chan 2] EOF received (2) +DEBUG:paramiko.transport:[chan 3] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 2] EOF sent (2) +DEBUG:paramiko.transport:[chan 3] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 3 opened. +DEBUG:paramiko.transport:[chan 3] Sesch channel 3 request ok +DEBUG:paramiko.transport:[chan 3] EOF received (3) +DEBUG:paramiko.transport:[chan 3] EOF sent (3) +DEBUG:paramiko.transport:Dropping user packet because connection is dead. +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:58:38] "POST /myclass/api/Lms_Config_Theme_and_Logo/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:59:32.828502 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9f4740d0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +INFO:root:2025-01-30 14:59:34.511696 : Lms_Add_Logo_File DEPLACEMENT DE ./Data/logocorinnebondublackadaptedmysy_20250130145932.png VERS /var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 14:59:34] "POST /myclass/api/Lms_Add_Logo_File/ HTTP/1.1" 200 - +INFO:root:2025-01-30 14:59:59.542298 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2f51e0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +INFO:root:2025-01-30 15:00:03.700801 : Lms_Add_BG_File DEPLACEMENT DE ./Data/Corinnebannierev1_20250130145959.png VERS /var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:00:03] "POST /myclass/api/Lms_Add_BG_File/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 15:03:48.509691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:03:48.512713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:03:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:03:48.516706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:03:48.518714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:03:48.525022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:03:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:03:48.533524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:03:48.541221 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:03:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:03:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:03:48.549179 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:03:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:03:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:03:48.714253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:03:48.718711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:03:48.722009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:03:48] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:03:48.729634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:03:48] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2f5540 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +DEBUG:paramiko.transport:starting thread (client mode): 0x9f381150 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 15:03:54.903013 : Get_LMS_Logo_And_Bannier_Img -[WinError 2] Le fichier spécifié est introuvable: './temp_direct/header-logo_35961.png' - Line : 2496 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:03:54] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:03:55] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 15:04:08.147120 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff3beb0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] remove(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +INFO:root:2025-01-30 15:04:09.259905 : Lms_Delete_Banniere_File SUPPRESSION DU FICHIER DE /var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:04:09] "POST /myclass/api/Lms_Delete_Banniere_File/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 15:04:19.678323 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9fadcf10 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +INFO:root:2025-01-30 15:04:20.714840 : Lms_Add_BG_File DEPLACEMENT DE ./Data/Corinnebannierev2_20250130150419.png VERS /var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:04:20] "POST /myclass/api/Lms_Add_BG_File/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:06:23.252777 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9ff3b4f0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] remove(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +INFO:root:2025-01-30 15:06:26.933807 : Lms_Delete_Banniere_File SUPPRESSION DU FICHIER DE /var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:06:26] "POST /myclass/api/Lms_Delete_Banniere_File/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 15:06:45.140763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:06:45.144153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:06:45.150715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:06:45.158206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:06:45.166205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:06:45] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:06:45.171582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:06:45] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:06:45.173581 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:06:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:06:45] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:06:45.193219 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:06:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:06:45] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:06:45.368445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:06:45.374407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:06:45] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:06:45.379750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:06:45.383891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:06:45] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9fadd000 +DEBUG:paramiko.transport:starting thread (client mode): 0x9fadcf70 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:06:46] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:06:46] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:06:59.610074 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9fadd390 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +INFO:root:2025-01-30 15:07:00.285546 : Lms_Add_BG_File DEPLACEMENT DE ./Data/Corinnebannierev2_20250130150659.png VERS /var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:07:00] "POST /myclass/api/Lms_Add_BG_File/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:08:11.100009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:08:11.105059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:08:11.112398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:08:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:08:11.120177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:08:11.123384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:08:11.132023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:08:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:08:11.147749 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:08:11] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:08:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:08:11] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:08:11.163308 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:08:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:08:11.273821 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:08:11.276826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:08:11.281334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:08:11] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:08:11.301171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:08:11] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2671f0 +DEBUG:paramiko.transport:starting thread (client mode): 0x9f380160 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:08:16] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:08:16] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 15:13:16.385441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:13:16.400915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:13:16] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2c1b10 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:13:22] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:14:12.543200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:14:12.548386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:14:12] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f4767d0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:14:17] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 15:14:41.677423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:14:41] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:14:43.603879 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2f6350 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Adding ssh-ed25519 host key for 88.170.110.220: b'e44b0a61fb86892f0b6973a38e33cec5' +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] EOF received (0) +DEBUG:paramiko.transport:[chan 1] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:[chan 1] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 1 opened. +DEBUG:paramiko.transport:[chan 1] Sesch channel 1 request ok +DEBUG:paramiko.transport:[chan 1] EOF received (1) +DEBUG:paramiko.transport:[chan 2] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 1] EOF sent (1) +DEBUG:paramiko.transport:[chan 2] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 2 opened. +DEBUG:paramiko.transport:[chan 2] Sesch channel 2 request ok +DEBUG:paramiko.transport:[chan 2] EOF received (2) +DEBUG:paramiko.transport:[chan 3] Max packet in: 32768 bytes +DEBUG:paramiko.transport:[chan 2] EOF sent (2) +DEBUG:paramiko.transport:[chan 3] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 3 opened. +DEBUG:paramiko.transport:[chan 3] Sesch channel 3 request ok +DEBUG:paramiko.transport:[chan 3] EOF received (3) +DEBUG:paramiko.transport:[chan 3] EOF sent (3) +DEBUG:paramiko.transport:Dropping user packet because connection is dead. +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:14:49] "POST /myclass/api/Lms_Config_Theme_and_Logo/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:15:33.634289 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9fef2bc0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +INFO:root:2025-01-30 15:15:37.571576 : Lms_Add_BG_File DEPLACEMENT DE ./Data/Corinnebannierev2_20250130151533.png VERS /var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:15:37] "POST /myclass/api/Lms_Add_BG_File/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 15:15:49.229020 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9fef0ee0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +INFO:root:2025-01-30 15:15:50.563537 : Lms_Add_Logo_File DEPLACEMENT DE ./Data/logocorinnebondublackadaptedmysy_20250130151549.png VERS /var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:15:50] "POST /myclass/api/Lms_Add_Logo_File/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:18:37.748908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:18:37.757256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:18:37] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:18:37.764660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:18:37.770703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:18:37.776103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:18:37.782586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:18:37] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:18:37] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:18:37] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:18:37.811208 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:18:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:18:37.828540 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:18:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:18:37.984187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:18:37.988346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:18:37.991351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:18:37] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:18:37.997862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:18:38] "POST /myclass/api/Get_Lms_Themes/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2f53c0 +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2f78b0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'rb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/background.png', 'rb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:18:42] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:18:42] "POST /myclass/api/Get_LMS_Logo_And_Bannier_Img/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 15:18:47.388564 : Security check : IP adresse '127.0.0.1' connected +DEBUG:paramiko.transport:starting thread (client mode): 0x9f2f5030 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u3 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] remove(b'/var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png') +INFO:root:2025-01-30 15:18:48.135385 : Lms_Delete_Logo_File SUPPRESSION DU FICHIER DE /var/www/html/chamilo_mysy_rec/web/css/themes/59-envdevpart-theme/images/header-logo.png +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:18:48] "POST /myclass/api/Lms_Delete_Logo_File/ HTTP/1.1" 200 - +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2025-01-30 15:19:55.397636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:19:55.526758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:19:55.534966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:19:55.543587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:19:55.547799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:19:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:19:55.565109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:19:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:19:55] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:19:55.579323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:19:55] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:19:55.582702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:19:55.593531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:19:55.602000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:19:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:19:55.607414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:19:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:19:55] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:19:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:19:55] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:19:55] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:19:55] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:20:18.775226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:20:18.779261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:20:18.783572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:20:18.788886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:20:18.804353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:20:18.815867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:20:18.828937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:20:18.843550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:20:18.848561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:20:18.858390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:20:18.861850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:20:18.869222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:20:18.873217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:20:18.885699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:20:18.893089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:20:18.902496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:20:18] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:26:52.310594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:26:52.418939 : external_code = BONDU01 ==> Ma Révolution Quantique +INFO:root:2025-01-30 15:26:53.432824 : La formation indexée (champ title) =679b8c2cee4da203d6e17d17 +INFO:root:2025-01-30 15:26:53.432824 : 1 ont été indexes => title +INFO:root:2025-01-30 15:26:53.751919 : ela_index_class_key_word 2 mot(s) clé(s) ont été indexés pour la formation BONDU01 +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:26:53] "POST /myclass/api/create_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:26:57.270312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:26:57.297335 : L'image de la formation BONDU01 a bien ete enregistrée. +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:26:57] "POST /myclass/api/recordClassImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:27:25.662203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:27:25.666307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:27:25.678037 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:27:25.683050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:27:25.695048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:27:25.699060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:27:25.707850 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:27:25.721252 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:27:25.869644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:27:25.873642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:27:25.878636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:27:25.886117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:27:25.891120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:27:25.900099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:27:25.906090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:27:25.916870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:27:25.929260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:27:25.934298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:25] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:27:34.315643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:34] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:27:42.708677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:27:42.713708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:27:42.719137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:27:42.721198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:27:42.731455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:27:42.736447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:42] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:42] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:42] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:42] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:27:43.111317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:27:43.114655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:27:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:04.654085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:04] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:05.753399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:05.757403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:05.761404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:05.766399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:05.774416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:05.781416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:05.788950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:05.795944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:05.801941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:05.809806 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:05.815289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:05.826313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:05.832431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:05.840403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:05.845438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:05.854346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:05.861663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:05.865814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:05.874007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:05.892288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:05.903971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:05.908978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:05.917469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:05.926000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:05] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:06.312184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:06.319417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:06.323010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:06.328737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:06] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:06] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:06] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:06] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:42.834732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:42.875525 : update_class - La formation a bin ete mise à jour =679b8c2cee4da203d6e17d17 +INFO:root:2025-01-30 15:28:42.880876 : external_code = BONDU01 ==> Ma Révolution Quantique +INFO:root:2025-01-30 15:28:43.236298 : La formation indexée (champ title) =679b8c2cee4da203d6e17d17 +INFO:root:2025-01-30 15:28:43.236298 : 1 ont été indexes => title +INFO:root:2025-01-30 15:28:43.240321 : external_code = BONDU01 ==> Psychologie:Quantique;neurosciences +INFO:root:2025-01-30 15:28:43.663038 : La formation indexée (champs objectif) =679b8c2cee4da203d6e17d17 +INFO:root:2025-01-30 15:28:43.663038 : 1 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:43] "POST /myclass/api/update_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:43.669342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:43.687419 : L'image de la formation BONDU01 a bien ete enregistrée. +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:43] "POST /myclass/api/recordClassImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:50.427179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:50.430452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:50.435914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:50] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:50.447556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:50] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:28:50.453551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:28:50.458553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:50] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:50] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:50] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:28:50] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:30:44.147631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:30:44] "POST /myclass/api/Add_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:30:44.409180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:30:44] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:36:24.742703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:36:24.746708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:36:24.778354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:36:24.782143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:36:24] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:36:24.792948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:36:24.799304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:36:24] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:36:24] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:36:24] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:36:24] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:36:24] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:36:58.783343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:36:58] "POST /myclass/api/Add_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:36:59.009370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:36:59] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:06.233488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:06.341275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:06.345217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:06.349751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:06] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:06.357066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:06.362078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:06.364459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:06] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:06.372453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:06.379495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:06] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:06] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:06.392058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:06.402463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:06] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:06] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:06] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:06] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:08.924975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:08] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:17.471879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:17.475895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:17.481730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:17.488027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:17.489021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:17.498036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:17] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:17] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:17] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:17] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:17.875000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:18.244607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:18] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:39.240980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:39] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:40.846292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:40.852296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:40.860338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:40.869655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:40] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:40.903463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:40.920815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:40.926394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:40] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:40] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:40.938821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:40.950981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:40.961339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:40] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:40] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:40.975591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:40] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:40.984783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:41.001284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:41.013841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:41.025845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:41.042558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:41.050591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:41.064079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:41.082640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:41.100134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:41.116591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:41.124576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:41.138691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:41.150688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:41] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 15:37:42.295734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:42.300268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:42.307274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 15:37:42.316049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:42] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:42] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:42] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 15:37:42] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:01:37.891975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:01:37.941981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:01:38.004292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:01:38.015922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:01:38.023487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:01:38.032875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:01:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:01:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:01:38] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:01:38] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:01:38] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:01:38] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:01:39.210788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:01:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:01:39.618790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:01:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:08:50.742240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:08:50.748760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:08:50.756928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:08:50] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:08:50] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:08:50.806094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:08:50.812119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:08:50] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:08:50.823617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:08:50] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:08:50] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:08:50] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:08:56.991884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:08:57.001534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:08:57] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:08:57] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:15.526581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:15] "POST /myclass/api/Update_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:16.068805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:16] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:46.461372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:46.766578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:46.772601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:46.778594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:46] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:46.790602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:46.798594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:46] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:46.808593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:46] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:46.822595 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:46.829088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:46] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:46.835092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:46.903210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:46] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:46] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:47] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:47] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:52.764496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:52] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:54.118600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:54.122095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:54.126674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:54.134099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:54.142233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:54.152305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:54.166675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:54.180957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:54.186529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:54.193334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:54.197821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:54.212747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:54.217152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:54.227896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:54.233858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:54.242590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:54.252617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:54.258638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:54.271712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:54.282756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:54.293858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:54.304984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:54.321789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:54.336855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:54] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:55.119939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:55.123362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:55.128998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:09:55.134602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:55] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:55] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:55] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:55] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:09:57.743489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:09:57] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:10:19.550015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:10:19.803938 : Add_Update_UE_To_Class La valeur 'crédit' est invalide +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:10:19] "POST /myclass/api/Add_Update_UE_To_Class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:12:36.815264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:12:36.821720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:12:36.826374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:12:36.834939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:12:36] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:12:36.847427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:12:36] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:12:36.855904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:12:36] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:12:36.864745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:12:36.872837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:12:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:12:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:12:36.891367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:12:36] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:12:36.903390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:12:36] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:12:36.911137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:12:36] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:12:36.919115 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:12:36] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:12:36] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:12:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:12:36] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:12:38.054070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:12:38.058168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:12:38] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:12:38] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:16:13.082591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:16:13.095391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:16:13.102497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:16:13.110183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:16:13.117983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:16:13.127060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:16:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:16:13] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:16:13] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:16:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:16:13] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:16:13.221874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:16:13] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:16:13.227526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:16:13.232513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:16:13.242458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:16:13.252435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:16:13] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:16:13.263255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:16:13] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:16:13] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:16:13] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:16:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:16:13] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:16:13.530528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:16:13.536622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:16:13] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:16:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:17:12.974817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:17:22.909694 : Add_Update_UE_To_Class La valeur 'crédit' est invalide +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:17:22] "POST /myclass/api/Add_Update_UE_To_Class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:17:46.946481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:17:47] "POST /myclass/api/Add_Update_UE_To_Class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:17:47.064429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:17:47] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:18:06.920633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:18:06] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:18:30.130640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:18:30] "POST /myclass/api/Add_Update_UE_To_Class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:18:30.247693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:18:30] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:18:51.258222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:18:51.265568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:18:51.275084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:18:51.284133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:18:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:18:51.289730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:18:51.301138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:18:51] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:18:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:18:51] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:18:51] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:18:51] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:18:51.734210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:18:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:18:52.524821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:18:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:19:52.536190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:19:52] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:20:16.717997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:20:17] "POST /myclass/api/Push_Class_To_MySy_LMS/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:20:17.506839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:20:17] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:22:00.357882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:22:00.363361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:22:00.369081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:22:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:22:00] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:22:00] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:22:00.489684 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:22:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:27:45.343211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:27:45.351630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:27:45.357945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:27:45.367947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:27:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:27:45.379594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:27:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:27:45.391325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:27:45] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:27:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:27:45.400346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:27:45.406635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:27:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:27:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-01-30 16:27:45.416624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-01-30 16:27:45.419032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:27:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:27:45] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:27:45] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Jan/2025 16:27:45] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - diff --git a/ela_factures_mgt.py b/ela_factures_mgt.py index c7cc336..9aea41e 100644 --- a/ela_factures_mgt.py +++ b/ela_factures_mgt.py @@ -609,8 +609,8 @@ def createOrder(diction): if( local_status is False): mycommon.myprint( str(inspect.stack()[0][ - 3]) + " la valeur du remise n'est pas correcte ") - return False, "la valeur du remise n'est pas correcte ", None + 3]) + " La valeur de la remise n'est pas correcte ") + return False, "La valeur de la remise n'est pas correcte ", None local_status, local_discount_qty = mycommon.IsInt(discount_qty) if (local_status is False): diff --git a/ela_user_account.py b/ela_user_account.py index 8a5193b..b538b99 100644 --- a/ela_user_account.py +++ b/ela_user_account.py @@ -1832,7 +1832,7 @@ def InitUserPasswd(diction): coll_name = MYSY_GV.dbname['partnair_account'] - print(" #### myquery partenaire ="+str(myquery)) + #print(" #### myquery partenaire ="+str(myquery)) tmp = coll_name.count_documents(myquery) if (tmp <= 0): @@ -1841,7 +1841,7 @@ def InitUserPasswd(diction): retVal = coll_name.find(myquery, {"_id": 0, "valide": 0,}) - print(" ### retVal 001 = ", str(retVal[0])) + #print(" ### retVal 001 = ", str(retVal[0])) """ Dans le cas exclusif du compte pro, @@ -1857,7 +1857,7 @@ def InitUserPasswd(diction): new_token['active'] = "1" new_token['email'] = str(myemail) - print(" ### str(retVal[0]['recid']) = ", str(retVal[0]['recid'])) + #print(" ### str(retVal[0]['recid']) = ", str(retVal[0]['recid'])) ret_val = coll_name.find_one_and_update( {'recid': str(retVal[0]['recid']), }, @@ -1885,19 +1885,19 @@ def InitUserPasswd(diction): if ("_id" not in ret_val_tmp.keys()): mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible de créer le nouveau token") - return True, "La demande de reinitiation à été prise en compte" + return True, "La demande de réinitialisation à été prise en compte" # Account type 2 is for PRO customers account_type = 2 email_mgt.send_user_init_pwd_mail(mynewtoken, retVal[0]['email'],account_type ) - return True, "La demande de reinitiation à été prise en compte" + return True, "La demande de réinitialisation à été prise en compte" except Exception as e: exc_type, exc_obj, exc_tb = sys.exc_info() mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) - return False, "Impossible de reinitialiser le mot de passe de l'utiilisateur" + return False, "Impossible de réinitialiser le mot de passe" ''' diff --git a/lms_chamilo/mysy_lms.py b/lms_chamilo/mysy_lms.py index 9e43ce7..a20e451 100644 --- a/lms_chamilo/mysy_lms.py +++ b/lms_chamilo/mysy_lms.py @@ -189,6 +189,8 @@ def Create_MySy_LMS_User(diction): hashed_pwd = hashed_pwd.decode("UTF-8") + print(" ### CLAIRE PWD = ", password) + print(" ### hashed_pwd PWD = ", hashed_pwd) if (retval is None or "current_val" not in retval.keys()): mycommon.myprint(" Impossible de récupérer la sequence 'mysy_sequence' ") diff --git a/main.py b/main.py index b08801d..05e9ff8 100644 --- a/main.py +++ b/main.py @@ -1612,7 +1612,7 @@ Cette API retourne les formations par metier def get_class_by_metier(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) - print(" ### payload = ", payload) + print(" ### get_class_by_metier payload = ", payload) status, result = cm.get_class_by_metier(payload) return jsonify(status=status, message=result) @@ -1651,7 +1651,7 @@ Cette API recupere les facture d'un client en prenant son tokek def get_invoice_by_customer(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) - print(" ### payload = ", payload) + print(" ### get_invoice_by_customer payload = ", payload) status, result = invoice.get_invoice_by_customer(payload) return jsonify(status=status, message=result) @@ -1665,7 +1665,7 @@ retournés def get_product_service(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) - print(" ### payload = ", payload) + print(" ### get_product_service payload = ", payload) status, result = PS.get_product_service(payload) return jsonify(status=status, message=result) @@ -1678,7 +1678,7 @@ Cette API rengristre un mode depayment (CB ou SEPA) def add_payement_mode(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) - print(" ### payload = ", payload) + print(" ### add_payement_mode payload = ", payload) status, result = invoice.add_payement_mode(payload) return jsonify(status=status, message=result) @@ -1703,7 +1703,7 @@ Cette API recupere les données et crée la commande def createOrder(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) - print(" ### payload = ", str(payload)) + print(" ### createOrder payload = ", str(payload)) status, message, order_id = invoice.createOrder(payload) return jsonify(status=status, message=message, order_id=order_id) @@ -1715,7 +1715,7 @@ Cette API retourne la liste des mots suggerés pour la recherche def Get_Suggested_Word(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) - print(" ### payload = ", str(payload)) + print(" ### Get_Suggested_Word payload = ", str(payload)) status, message = mycommon.Get_Suggested_Word() return jsonify(status=status, message=message) diff --git a/partner_client.py b/partner_client.py index eebefdc..8d95922 100644 --- a/partner_client.py +++ b/partner_client.py @@ -1318,6 +1318,9 @@ def Get_Partner_List_Partner_Client(diction): if ("is_prospect" not in retval.keys()): user['is_prospect'] = "" + if ("intranet_account_id" not in retval.keys()): + user['intranet_account_id'] = "" + val_tmp = val_tmp + 1 RetObject.append(mycommon.JSONEncoder().encode(user)) @@ -1418,7 +1421,7 @@ def Get_Partner_List_Partner_Client_with_filter_Like(diction): } - print("#### Get_Partner_List_Partner_Client_with_filter_Like laa 01 : query = ", qry) + #print("#### Get_Partner_List_Partner_Client_with_filter_Like laa 01 : query = ", qry) RetObject = [] val_tmp = 1 @@ -1441,6 +1444,9 @@ def Get_Partner_List_Partner_Client_with_filter_Like(diction): if( "is_prospect" not in New_retVal.keys() ): user['is_prospect'] = "" + if ("intranet_account_id" not in New_retVal.keys()): + user['intranet_account_id'] = "" + RetObject.append(mycommon.JSONEncoder().encode(user)) return True, RetObject @@ -1553,6 +1559,12 @@ def Get_Given_Partner_Client(diction): if ("type_pouvoir_public_id" not in retval.keys()): user['type_pouvoir_public_id'] = "" + if ("is_prospect" not in retval.keys()): + user['is_prospect'] = "" + + if ("intranet_account_id" not in retval.keys()): + user['intranet_account_id'] = "" + RetObject.append(mycommon.JSONEncoder().encode(user)) #print(" ### RetObject = ", RetObject) @@ -1662,6 +1674,12 @@ def Get_Given_Partner_Client_From_Id(diction): if ("type_pouvoir_public_id" not in retval.keys()): user['type_pouvoir_public_id'] = "" + if ("is_prospect" not in retval.keys()): + user['is_prospect'] = "" + + if ("intranet_account_id" not in retval.keys()): + user['intranet_account_id'] = "" + RetObject.append(mycommon.JSONEncoder().encode(user)) #print(" ### RetObject = ", RetObject) @@ -2037,6 +2055,8 @@ def Get_Client_Type_List(diction): if ("is_prospect" not in retval.keys()): user['is_prospect'] = "" + if ("intranet_account_id" not in retval.keys()): + user['intranet_account_id'] = "" val_tmp = val_tmp + 1 RetObject.append(mycommon.JSONEncoder().encode(user)) diff --git a/user_message_mgt.py b/user_message_mgt.py index bd7056c..59b7b5f 100644 --- a/user_message_mgt.py +++ b/user_message_mgt.py @@ -120,12 +120,22 @@ def add_user_message(diction): if ("object" in diction.keys()): if diction['object']: new_diction['object'] = diction['object'] + if (len(str(diction['message'])) > 300): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - L'objet du message doit faire moins de 300 caractères") + return False, "Le sujet doit faire moins de 300 caractères" if ("message" in diction.keys()): if diction['message']: new_diction['message'] = diction['message'] + if(len(str(diction['message'])) > 1500): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - Le message doit faire moins de 1500 caractères") + return False, "Le message doit faire moins de 1500 caractères" + + if ("user_ip" in diction.keys()): if diction['user_ip']: new_diction['user_ip'] = diction['user_ip'] @@ -177,16 +187,16 @@ def add_user_message(diction): if ret_val and ret_val.inserted_id: nb_doc = ret_val.inserted_id - mycommon.myprint(" Le message a été bien enregistrée. Id message = '" + str(nb_doc) + "' ") - return True, "Le message a été bien enregistrée" + mycommon.myprint(" Le message a été bien enregistré. Id message = '" + str(nb_doc) + "' ") + return True, "Le message a été bien enregistré" else: - return False, "Impossible d'ajouter le message" + return False, "Impossible d'enregistrer le message (2) " except Exception as e: exc_type, exc_obj, exc_tb = sys.exc_info() mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) - return False, "Impossible d'ajouter le message" + return False, "Impossible d'enregistrer le message"